summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2007-08-03 15:03:19 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2007-08-03 15:03:19 +0000
commit113bb6c6cd94c86cebd5f140d496d7374cc57317 (patch)
tree366a715c3a4409ae92e4f5cd88f838fdc61304c2 /meta
parentd9f5fb02c8f9f40bc4b34265e0f4bda24d7cfb58 (diff)
downloadpoky-113bb6c6cd94c86cebd5f140d496d7374cc57317.tar.gz
speex: updated to 1.2beta2, changed packaging
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2353 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/speex/speex_1.1.12+1.2beta2.bb24
-rw-r--r--meta/packages/speex/speex_1.1.7.bb31
2 files changed, 24 insertions, 31 deletions
diff --git a/meta/packages/speex/speex_1.1.12+1.2beta2.bb b/meta/packages/speex/speex_1.1.12+1.2beta2.bb
new file mode 100644
index 0000000000..f60408d50a
--- /dev/null
+++ b/meta/packages/speex/speex_1.1.12+1.2beta2.bb
@@ -0,0 +1,24 @@
1DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech."
2SECTION = "libs"
3LICENSE = "BSD"
4HOMEPAGE = "http://www.speex.org"
5DEPENDS = "libogg"
6
7SRC_URI = "http://downloads.us.xiph.org/releases/speex/speex-1.2beta2.tar.gz"
8S = "${WORKDIR}/${PN}-1.2beta2"
9
10PARALLEL_MAKE = ""
11
12inherit autotools pkgconfig
13
14EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \
15 --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest"
16
17do_stage() {
18 autotools_stage_all
19}
20
21PACKAGES += "${PN}-bin"
22FILES_${PN} = "${libdir}/libspeex.so.*"
23FILES_${PN}-dev += "${libdir}/libspeex.so.*"
24FILES_${PN}-bin = "${bindir}"
diff --git a/meta/packages/speex/speex_1.1.7.bb b/meta/packages/speex/speex_1.1.7.bb
deleted file mode 100644
index 624f76287c..0000000000
--- a/meta/packages/speex/speex_1.1.7.bb
+++ /dev/null
@@ -1,31 +0,0 @@
1DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech."
2SECTION = "libs"
3LICENSE = "BSD"
4HOMEPAGE = "http://www.speex.org"
5DEPENDS = "libogg"
6PR = "r1"
7
8SRC_URI = "http://downloads.us.xiph.org/releases/speex/${PN}-${PV}.tar.gz"
9
10inherit autotools
11
12# Some interesting options are:
13#
14# --enable-arm4-asm
15# --enable-arm5e-asm
16# --enable-fixed-point
17#
18# NB: the arm assembly is currently broken :(
19#
20
21EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} --with-ogg-includes=${STAGING_INCDIR}"
22
23do_stage() {
24 oe_libinstall -C libspeex/.libs -so libspeex ${STAGING_LIBDIR}
25 install -d ${STAGING_INCDIR}/speex
26 install -m 0644 include/speex/speex.h ${STAGING_INCDIR}/speex
27 install -m 0644 include/speex/speex_bits.h ${STAGING_INCDIR}/speex
28 install -m 0644 include/speex/speex_callbacks.h ${STAGING_INCDIR}/speex
29 install -m 0644 include/speex/speex_header.h ${STAGING_INCDIR}/speex
30 install -m 0644 include/speex/speex_stereo.h ${STAGING_INCDIR}/speex
31}