xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-multimedia/libcdio/libcdio_2.1.0.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "The GNU Compact Disc Input and Control library (libcdio) contains a library for CD-ROM and CD image access."
2HOMEPAGE = "http://www.gnu.org/software/libcdio/"
3SECTION = "libs"
4LICENSE = "GPL-3.0-or-later"
5LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
6
7SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.bz2 \
8           file://0001-Fix-a-few-Werror-format-security-errors-with-mvprint.patch \
9           "
10
11SRC_URI[md5sum] = "aa7629e8f73662a762f64c444b901055"
12SRC_URI[sha256sum] = "8550e9589dbd594bfac93b81ecf129b1dc9d0d51e90f9696f1b2f9b2af32712b"
13
14inherit autotools pkgconfig
15
16PACKAGECONFIG ??= "cdda-player"
17PACKAGECONFIG[cdda-player] = "--with-cdda-player,--without-cdda-player,ncurses"
18PACKAGECONFIG[cddb] = "--enable-cddb,--disable-cddb,libcddb"
19PACKAGECONFIG[vcd-info] = "--enable-vcd-info,--disable-vcd-info,vcdimager"
20
21PACKAGES += "${PN}-utils"
22
23FILES:${PN} = "${libdir}/${BPN}${SOLIB}"
24FILES:${PN}-utils = "${bindir}/*"
25
26python libcdio_split_packages() {
27    libdir = d.expand('${libdir}')
28    do_split_packages(d, libdir, r'^lib(.*)\.so\..*', 'lib%s', 'libcdio %s library', extra_depends='', allow_links=True)
29}
30
31PACKAGESPLITFUNCS =+ "libcdio_split_packages"
32