diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2006-01-03 02:14:00 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-03 02:14:00 +0000 |
commit | 08d93ae598df98aad8c1f225a6c3ecf5216c1b9a (patch) | |
tree | df41f4b15c8ef79b5a8b9eed37a1d9a2e997f1bb | |
parent | a8cbf495b5a6e0ee0c5f5c654706f7141d4fb932 (diff) |
libvorbis: change do_stage to use autotools_stage_all in 1.0.1
-rw-r--r-- | packages/libvorbis/libvorbis_1.0.1.bb | 12 |
1 files changed, 2 insertions, 10 deletions
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 } |