diff options
Diffstat (limited to 'meta/packages/speex')
-rw-r--r-- | meta/packages/speex/speex_1.1.12+1.2beta3.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/packages/speex/speex_1.1.12+1.2beta3.bb b/meta/packages/speex/speex_1.1.12+1.2beta3.bb new file mode 100644 index 0000000000..f1445100b4 --- /dev/null +++ b/meta/packages/speex/speex_1.1.12+1.2beta3.bb | |||
@@ -0,0 +1,25 @@ | |||
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 | |||
7 | SRC_URI = "http://downloads.us.xiph.org/releases/speex/speex-1.2beta3.tar.gz" | ||
8 | S = "${WORKDIR}/${PN}-1.2beta3" | ||
9 | |||
10 | PARALLEL_MAKE = "" | ||
11 | |||
12 | inherit autotools pkgconfig | ||
13 | |||
14 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ | ||
15 | --disable-float-api --disable-vbr \ | ||
16 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" | ||
17 | |||
18 | do_stage() { | ||
19 | autotools_stage_all | ||
20 | } | ||
21 | |||
22 | PACKAGES += "${PN}-bin" | ||
23 | FILES_${PN} = "${libdir}/libspeex.so.*" | ||
24 | FILES_${PN}-dev += "${libdir}/libspeex.so.*" | ||
25 | FILES_${PN}-bin = "${bindir}" | ||