diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-28 13:37:21 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-04 17:40:35 +0100 |
commit | 2933dc1f1732c1662c7fff9c50692b66c2eea720 (patch) | |
tree | d70cb57535859d8c0839a87f5259bd0c6eca61f2 | |
parent | 5ce21006ad52670004580ac7e2cd414d1973775c (diff) | |
download | poky-2933dc1f1732c1662c7fff9c50692b66c2eea720.tar.gz |
speex: use lib_package bbclass
This is a clean-up following the recent addition of PN-bin
to bitbake.conf and lib_package
(From OE-Core rev: 4c41954227144606d2d22fbdf07231f4c7207ac5)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/speex/speex_1.2rc1.bb | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/meta/recipes-multimedia/speex/speex_1.2rc1.bb b/meta/recipes-multimedia/speex/speex_1.2rc1.bb index 73701346a6..faf63b0fae 100644 --- a/meta/recipes-multimedia/speex/speex_1.2rc1.bb +++ b/meta/recipes-multimedia/speex/speex_1.2rc1.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=314649d8ba9dd7045dfb6683f298d0a8 \ | |||
7 | file://include/speex/speex.h;beginline=1;endline=34;md5=a68129f78d7fe66e07163f73aba143b3" | 7 | file://include/speex/speex.h;beginline=1;endline=34;md5=a68129f78d7fe66e07163f73aba143b3" |
8 | DEPENDS = "libogg" | 8 | DEPENDS = "libogg" |
9 | 9 | ||
10 | PR = "r1" | 10 | PR = "r2" |
11 | 11 | ||
12 | SRC_URI = "http://downloads.us.xiph.org/releases/speex/speex-1.2rc1.tar.gz" | 12 | SRC_URI = "http://downloads.us.xiph.org/releases/speex/speex-1.2rc1.tar.gz" |
13 | 13 | ||
@@ -16,12 +16,8 @@ SRC_URI[sha256sum] = "342f30dc57bd4a6dad41398365baaa690429660b10d866b7d508e8f117 | |||
16 | 16 | ||
17 | PARALLEL_MAKE = "" | 17 | PARALLEL_MAKE = "" |
18 | 18 | ||
19 | inherit autotools pkgconfig | 19 | inherit autotools pkgconfig lib_package |
20 | 20 | ||
21 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ | 21 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ |
22 | --disable-float-api --disable-vbr \ | 22 | --disable-float-api --disable-vbr \ |
23 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" | 23 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" |
24 | |||
25 | PACKAGES += "${PN}-bin" | ||
26 | FILES_${PN} = "${libdir}/lib*.so.*" | ||
27 | FILES_${PN}-bin = "${bindir}" | ||