From: John Bowler Date: Tue, 3 Jan 2006 02:14:00 +0000 (+0000) Subject: libvorbis: change do_stage to use autotools_stage_all in 1.0.1 X-Git-Tag: Release-2010-05/1~9453^2~2778 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08d93ae598df98aad8c1f225a6c3ecf5216c1b9a;p=openembedded.git libvorbis: change do_stage to use autotools_stage_all in 1.0.1 --- diff --git a/packages/libvorbis/libvorbis_1.0.1.bb b/packages/libvorbis/libvorbis_1.0.1.bb index 3a3ab73eeb..30124a982b 100644 --- a/packages/libvorbis/libvorbis_1.0.1.bb +++ b/packages/libvorbis/libvorbis_1.0.1.bb @@ -1,3 +1,4 @@ +PR = "r1" SECTION = "libs" DEPENDS = "libogg" DESCRIPTION = "Ogg Vorbis is a high-quality lossy audio codec \ @@ -17,14 +18,5 @@ EXTRA_OECONF = "--with-ogg-libraries=${STAGING_LIBDIR} \ --with-ogg-includes=${STAGING_INCDIR}" do_stage () { - oe_libinstall -a -so -C lib libvorbis ${STAGING_LIBDIR} - oe_libinstall -a -so -C lib libvorbisfile ${STAGING_LIBDIR} - oe_libinstall -a -so -C lib libvorbisenc ${STAGING_LIBDIR} - - install -d ${STAGING_INCDIR}/vorbis - install -m 0644 include/vorbis/vorbisenc.h \ - include/vorbis/vorbisfile.h \ - include/vorbis/codec.h ${STAGING_INCDIR}/vorbis/ - install -d ${STAGING_DATADIR}/aclocal - install -m 0644 vorbis.m4 ${STAGING_DATADIR}/aclocal/ + autotools_stage_all }