diff options
| author | Chris Lord <chris@openedhand.com> | 2006-09-01 18:01:05 +0000 |
|---|---|---|
| committer | Chris Lord <chris@openedhand.com> | 2006-09-01 18:01:05 +0000 |
| commit | f1f8c5a6a7234a7b618f98efbb3d28e414890fa9 (patch) | |
| tree | c102f2cf6c35a43ba5591eb4f53e01f97408653b /meta/packages/speex | |
| parent | b89a8f8820c5322ed060e74bfae6181fb1602251 (diff) | |
| download | poky-f1f8c5a6a7234a7b618f98efbb3d28e414890fa9.tar.gz | |
Add gstreamer 0.10 - Mostly packages from OE + updates and gstreamer
binary registry patch
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@694 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/speex')
| -rw-r--r-- | meta/packages/speex/speex_1.1.7.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/packages/speex/speex_1.1.7.bb b/meta/packages/speex/speex_1.1.7.bb new file mode 100644 index 0000000000..7ce34a80eb --- /dev/null +++ b/meta/packages/speex/speex_1.1.7.bb | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech." | ||
| 2 | SECTION = "libs" | ||
| 3 | LICENSE = "BSD" | ||
| 4 | HOMEPAGE = "http://www.speex.org" | ||
| 5 | DEPENDS = "libogg" | ||
| 6 | PR = "r0" | ||
| 7 | |||
| 8 | SRC_URI = "http://www.speex.org/download/speex-${PV}.tar.gz" | ||
| 9 | |||
| 10 | inherit autotools | ||
| 11 | |||
| 12 | # Some interesting options are: | ||
| 13 | # | ||
| 14 | # --enable-arm4-asm | ||
| 15 | # --enable-arm5e-asm | ||
| 16 | # --enable-fixed-point | ||
| 17 | # | ||
| 18 | |||
| 19 | EXTRA_OECONF_append_openmn = " --enable-arm5e-asm --enable-fixed-point" | ||
| 20 | |||
| 21 | do_configure_append() { | ||
| 22 | sed -i s/"^OGG_CFLAGS.*$"/"OGG_CFLAGS = "/g Makefile */Makefile */*/Makefile | ||
| 23 | sed -i s/"^OGG_LIBS.*$"/"OGG_LIBS = -logg"/g Makefile */Makefile */*/Makefile | ||
| 24 | perl -pi -e 's:^includedir.*$:includedir = ${STAGING_INCDIR}:g' Makefile */Makefile */*/Makefile | ||
| 25 | perl -pi -e 's:^oldincludedir.*$:includedir = ${STAGING_INCDIR}:g' Makefile */Makefile */*/Makefile | ||
| 26 | perl -pi -e 's:\s*-I/usr/include$::g' Makefile */Makefile */*/Makefile | ||
| 27 | } | ||
| 28 | |||
| 29 | do_stage() { | ||
| 30 | oe_libinstall -C libspeex/.libs -so libspeex ${STAGING_LIBDIR} | ||
| 31 | install -d ${STAGING_INCDIR}/speex | ||
| 32 | install -m 0644 include/speex/speex.h ${STAGING_INCDIR}/speex | ||
| 33 | install -m 0644 include/speex/speex_bits.h ${STAGING_INCDIR}/speex | ||
| 34 | install -m 0644 include/speex/speex_callbacks.h ${STAGING_INCDIR}/speex | ||
| 35 | install -m 0644 include/speex/speex_header.h ${STAGING_INCDIR}/speex | ||
| 36 | install -m 0644 include/speex/speex_stereo.h ${STAGING_INCDIR}/speex | ||
| 37 | } | ||
