From: Michael Lauer Date: Thu, 3 Mar 2005 10:06:49 +0000 (+0000) Subject: minor corrections to speex X-Git-Tag: Release-2010-05/1~14791 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b51d06e295fbd6a282c5a0fe91896c4d033765d;p=openembedded.git minor corrections to speex BKrev: 4226e1b92qhTAvRmMEnNJXuDwryaJA --- diff --git a/packages/speex/speex_1.0.4.bb b/packages/speex/speex_1.0.4.bb index e69de29bb2..e96c249f81 100644 --- a/packages/speex/speex_1.0.4.bb +++ b/packages/speex/speex_1.0.4.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech." +SECTION = "libs" +LICENSE = "BSD" +HOMEPAGE = "http://www.speex.org" +DEPENDS = "libogg" +PR = "r0" + +SRC_URI = "http://www.speex.org/download/speex-${PV}.tar.gz" + +inherit autotools + +do_configure_append() { + sed -i s/"^OGG_INCLUDES.*$"/"OGG_INCLUDES = "/g src/Makefile + sed -i s/"^OGG_LDFLAGSS.*$"/"OGG_LDFLAGS = "/g src/Makefile +} + +do_stage() { + oe_libinstall -C libspeex/.libs -so libspeex ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR}/speex + install -m 0644 include/speex/speex.h ${STAGING_INCDIR}/speex + install -m 0644 include/speex/speex_bits.h ${STAGING_INCDIR}/speex + install -m 0644 include/speex/speex_callbacks.h ${STAGING_INCDIR}/speex + install -m 0644 include/speex/speex_header.h ${STAGING_INCDIR}/speex + install -m 0644 include/speex/speex_stereo.h ${STAGING_INCDIR}/speex +} +