Commit 00cb5a7688c9cc4cea5beec891117dcc6a159811

cdparanoia svn: convert to new style staging
  
22# Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved
33# Released under the MIT license (see packages/COPYING)
44
5PR ="r1"
6LICENSE="GPL"
5PR = "r2"
6LICENSE = "GPL"
77
88PV = "10.2+svnr${SRCPV}"
99
10SRC_URI="svn://svn.xiph.org/trunk;module=cdparanoia;proto=http \
10SRC_URI = "svn://svn.xiph.org/trunk;module=cdparanoia;proto=http \
1111 file://fixes10.patch;patch=1 \
1212 file://Makefile.in.patch;patch=1 \
1313 file://interface_Makefile.in.patch;patch=1 \
1414 file://paranoia_Makefile.in.patch;patch=1 \
15 file://configure.in.patch;patch=1 "
15 file://configure.in.patch;patch=1 "
1616
17S="${WORKDIR}/cdparanoia"
17S = "${WORKDIR}/cdparanoia"
1818
1919PARALLEL_MAKE = ""
2020
2323do_install() {
2424 oe_runmake BINDIR="${D}/usr/bin" MANDIR="${D}/usr/share/man/" \
2525 INCLUDEDIR="${D}/usr/include/" LIBDIR="${D}/usr/lib" install
26}
27
28do_stage() {
29 install -d ${STAGING_INCDIR} ${STAGING_LIBDIR}
30
31 install -m 0644 paranoia/cdda_paranoia.h ${STAGING_INCDIR}
32 install -m 0644 interface/cdda_interface.h ${STAGING_INCDIR}
33
34 oe_libinstall -C interface libcdda_interface ${STAGING_LIBDIR}
35 oe_libinstall -C paranoia libcdda_paranoia ${STAGING_LIBDIR}
3626}