diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/recipes-multimedia/speex | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-multimedia/speex')
-rw-r--r-- | meta/recipes-multimedia/speex/speex_1.2rc1.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/speex/speex_1.2rc1.bb b/meta/recipes-multimedia/speex/speex_1.2rc1.bb new file mode 100644 index 0000000000..6f1b133f24 --- /dev/null +++ b/meta/recipes-multimedia/speex/speex_1.2rc1.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "Speex is an Open Source/Free Software patent-free audio compression format designed for speech." | ||
2 | HOMEPAGE = "http://www.speex.org" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "BSD" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8 \ | ||
6 | file://include/speex/speex.h;beginline=1;endline=34;md5=a68129f78d7fe66e07163f73aba143b3" | ||
7 | DEPENDS = "libogg" | ||
8 | |||
9 | PR = "r0" | ||
10 | |||
11 | SRC_URI = "http://downloads.us.xiph.org/releases/speex/speex-1.2rc1.tar.gz" | ||
12 | |||
13 | PARALLEL_MAKE = "" | ||
14 | |||
15 | inherit autotools pkgconfig | ||
16 | |||
17 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ | ||
18 | --disable-float-api --disable-vbr \ | ||
19 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" | ||
20 | |||
21 | PACKAGES += "${PN}-bin" | ||
22 | FILES_${PN} = "${libdir}/lib*.so.*" | ||
23 | FILES_${PN}-dev += "${libdir}/lib*.so.*" | ||
24 | FILES_${PN}-bin = "${bindir}" | ||