diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-12 10:23:12 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-12 10:25:55 +0100 |
commit | 00cb5a7688c9cc4cea5beec891117dcc6a159811 (patch) | |
tree | 3c39fcf450f8c0b264d30b30234aa5b835e4ab5f /recipes/cdparanoia | |
parent | c20d845b556e18a45e6e6b0edea5a9df11eaa8ba (diff) |
cdparanoia svn: convert to new style staging
Diffstat (limited to 'recipes/cdparanoia')
-rw-r--r-- | recipes/cdparanoia/cdparanoia_svn.bb | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/recipes/cdparanoia/cdparanoia_svn.bb b/recipes/cdparanoia/cdparanoia_svn.bb index 71fafee281..783d5071ff 100644 --- a/recipes/cdparanoia/cdparanoia_svn.bb +++ b/recipes/cdparanoia/cdparanoia_svn.bb @@ -2,19 +2,19 @@ # Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved # Released under the MIT license (see packages/COPYING) -PR ="r1" -LICENSE="GPL" +PR = "r2" +LICENSE = "GPL" PV = "10.2+svnr${SRCPV}" -SRC_URI="svn://svn.xiph.org/trunk;module=cdparanoia;proto=http \ +SRC_URI = "svn://svn.xiph.org/trunk;module=cdparanoia;proto=http \ file://fixes10.patch;patch=1 \ file://Makefile.in.patch;patch=1 \ file://interface_Makefile.in.patch;patch=1 \ file://paranoia_Makefile.in.patch;patch=1 \ - file://configure.in.patch;patch=1 " + file://configure.in.patch;patch=1 " -S="${WORKDIR}/cdparanoia" +S = "${WORKDIR}/cdparanoia" PARALLEL_MAKE = "" @@ -25,12 +25,3 @@ do_install() { INCLUDEDIR="${D}/usr/include/" LIBDIR="${D}/usr/lib" install } -do_stage() { - install -d ${STAGING_INCDIR} ${STAGING_LIBDIR} - - install -m 0644 paranoia/cdda_paranoia.h ${STAGING_INCDIR} - install -m 0644 interface/cdda_interface.h ${STAGING_INCDIR} - - oe_libinstall -C interface libcdda_interface ${STAGING_LIBDIR} - oe_libinstall -C paranoia libcdda_paranoia ${STAGING_LIBDIR} -} |