diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2016-11-30 12:51:22 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-12-09 12:02:13 +0100 |
commit | 9cd05c16510cb0b6a09f72e5c7488d021a55440b (patch) | |
tree | 4048363b1cc991dda800dab38daa4a39552e4db5 | |
parent | 3d998f3745b90c6b4db5eaa739e4f976b5d5eef2 (diff) | |
download | meta-openembedded-9cd05c16510cb0b6a09f72e5c7488d021a55440b.tar.gz |
libcdio-paranoia: new recipe for 10.2+0.93.1
Since libcdio 0.90, libcdio-paranoia is a separate project.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-multimedia/libcdio/libcdio-paranoia_10.2+0.93+1.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libcdio/libcdio-paranoia_10.2+0.93+1.bb b/meta-oe/recipes-multimedia/libcdio/libcdio-paranoia_10.2+0.93+1.bb new file mode 100644 index 000000000..82a16cc94 --- /dev/null +++ b/meta-oe/recipes-multimedia/libcdio/libcdio-paranoia_10.2+0.93+1.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "library to read digital audio CDs with error correction" | ||
2 | HOMEPAGE = "http://www.gnu.org/software/libcdio/" | ||
3 | SECTION = "libs" | ||
4 | LICENSE = "GPLv3+" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
6 | DEPENDS = "libcdio" | ||
7 | |||
8 | SRC_URI = "${GNU_MIRROR}/libcdio/${BP}.tar.bz2" | ||
9 | SRC_URI[md5sum] = "0255aa50e660db7f2c39658b9c565814" | ||
10 | SRC_URI[sha256sum] = "ec1d9b1d5a28cc042f2cb33a7cc0a2b5ce5525f102bc4c15db1fac322559a493" | ||
11 | |||
12 | inherit autotools pkgconfig | ||
13 | |||
14 | PACKAGES += "${PN}-utils" | ||
15 | |||
16 | FILES_${PN} = "${libdir}/${BPN}${SOLIB}" | ||
17 | FILES_${PN}-utils = "${bindir}/*" | ||
18 | |||
19 | python libcdio_split_packages() { | ||
20 | libdir = d.expand('${libdir}') | ||
21 | do_split_packages(d, libdir, '^lib(.*)\.so\..*', 'lib%s', 'libcdio %s library', extra_depends='', allow_links=True) | ||
22 | } | ||
23 | |||
24 | PACKAGESPLITFUNCS =+ "libcdio_split_packages" | ||