blob: 56a54504ac2f38690cde16276575e1dc4e32e48a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# cdparanoia OE build file
# Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
LICENSE = "GPL"
PV = "10.2+svnr${SRCPV}"
PR = "r2"
SRC_URI = "svn://svn.xiph.org/trunk;module=cdparanoia;proto=http \
file://fixes10.patch \
file://Makefile.in.patch \
file://interface_Makefile.in.patch \
file://paranoia_Makefile.in.patch \
file://configure.in.patch "
SRCREV = "16684"
S = "${WORKDIR}/cdparanoia"
inherit autotools
do_install() {
oe_runmake BINDIR="${D}/usr/bin" MANDIR="${D}/usr/share/man/" \
INCLUDEDIR="${D}/usr/include/" LIBDIR="${D}/usr/lib" install
}
PARALLEL_MAKE = ""
|