diff options
author | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-11-03 09:01:23 +0100 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-11-03 09:01:23 +0100 |
commit | 9c964b09b089d98b7da4c528f83fc0ea30a5c9bd (patch) | |
tree | 7c54b6ae4e09d106675314bc12d08e63af9864e4 /recipes/cdparanoia | |
parent | 87e80852736c60f3c60b313610caf1a6f4c0b86b (diff) | |
parent | ab0b2217fe5aa32e68f7a7b26c820fb425f4da3c (diff) |
Merge branch 'org.openembedded.dev' of git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/cdparanoia')
-rw-r--r-- | recipes/cdparanoia/cdparanoia_svn.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes/cdparanoia/cdparanoia_svn.bb b/recipes/cdparanoia/cdparanoia_svn.bb new file mode 100644 index 0000000000..d3358a64e3 --- /dev/null +++ b/recipes/cdparanoia/cdparanoia_svn.bb @@ -0,0 +1,35 @@ +# cdparanoia OE build file +# Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved +# Released under the MIT license (see packages/COPYING) + +PR ="r0" +LICENSE="GPL" + +PV = "10.2+svn${SRCREV}" + +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 " + +S="${WORKDIR}/cdparanoia" + +PARALLEL_MAKE = "" + +inherit autotools + +do_install() { + oe_runmake BINDIR="${D}/usr/bin" MANDIR="${D}/usr/share/man/" \ + 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} +} |