diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-06 09:03:20 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-08 11:52:30 -0800 |
commit | af1a2740bc47d355a3435fc5d36c47e48cb05ad2 (patch) | |
tree | bee2a5592d51fee88a82209200ad4b0e8df0be48 /meta/recipes-extended/xz | |
parent | 6dc18475127ca53363c20a402455dba68375e49b (diff) | |
download | openembedded-core-contrib-af1a2740bc47d355a3435fc5d36c47e48cb05ad2.tar.gz |
xz: split out liblzma as seperate packages
As usual, this creates problems for upgrade paths, but splitting out the lib is worth the short term hassle
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/xz')
-rw-r--r-- | meta/recipes-extended/xz/xz_5.0.3.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta/recipes-extended/xz/xz_5.0.3.bb b/meta/recipes-extended/xz/xz_5.0.3.bb index bae71ec5cf1..e8f96b67cb1 100644 --- a/meta/recipes-extended/xz/xz_5.0.3.bb +++ b/meta/recipes-extended/xz/xz_5.0.3.bb @@ -14,8 +14,15 @@ SRC_URI = "http://tukaani.org/xz/xz-${PV}.tar.gz" SRC_URI[md5sum] = "fefe52f9ecd521de2a8ce38c21a27574" SRC_URI[sha256sum] = "10eb4df72dffb2fb14c3d2d82b450e72282ffcb9ee3908a8e5b392b8f09681bf" -PR = "r0" +PR = "r1" inherit autotools gettext +PACKAGES =+ "liblzma liblzma-dev liblzma-staticdev liblzma-dbg" + +FILES_liblzma = "${libdir}/liblzma*${SOLIBS}" +FILES_liblzma-dev = "${includedir}/lzma* ${libdir}/liblzma*${SOLIBSDEV} ${libdir}/liblzma.la ${libdir}/pkgconfig/liblzma.pc" +FILES_liblzma-staticdev = "${libdir}/liblzma.a" +FILES_liblzma-dbg = "${libdir}/.debug/liblzma*" + BBCLASSEXTEND = "native" |