mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-09 04:11:16 +00:00
libcdio: clean up recipe
Fix description, use packageconfig, use packagesplitfuncs. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
9cd05c1651
commit
4fc06fd237
@@ -1,25 +1,28 @@
|
|||||||
ESCRIPTION = "The GNU Compact Disc Input and Control library (libcdio) contains a library for CD-ROM and CD image access."
|
SUMMARY = "The GNU Compact Disc Input and Control library (libcdio) contains a library for CD-ROM and CD image access."
|
||||||
HOMEPAGE = "http://www.gnu.org/software/libcdio/"
|
HOMEPAGE = "http://www.gnu.org/software/libcdio/"
|
||||||
SECTION = "libs"
|
SECTION = "libs"
|
||||||
|
|
||||||
LICENSE = "GPLv3+"
|
LICENSE = "GPLv3+"
|
||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
||||||
|
|
||||||
DEPENDS = "ncurses"
|
|
||||||
|
|
||||||
SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz"
|
SRC_URI = "${GNU_MIRROR}/${BPN}/${BP}.tar.gz"
|
||||||
SRC_URI[md5sum] = "d154476feaac5a7b5f180e83eaf3d689"
|
SRC_URI[md5sum] = "d154476feaac5a7b5f180e83eaf3d689"
|
||||||
SRC_URI[sha256sum] = "4972cd22fd8d0e8bff922d35c7a645be0db0ab0e7b3dfaecc9cd8272429d6975"
|
SRC_URI[sha256sum] = "4972cd22fd8d0e8bff922d35c7a645be0db0ab0e7b3dfaecc9cd8272429d6975"
|
||||||
|
|
||||||
inherit autotools pkgconfig
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= "cdda-player"
|
||||||
|
PACKAGECONFIG[cdda-player] = "--with-cdda-player,--without-cdda-player,ncurses"
|
||||||
|
PACKAGECONFIG[cddb] = "--enable-cddb,--disable-cddb,libcddb"
|
||||||
|
PACKAGECONFIG[vcd-info] = "--enable-vcd-info,--disable-vcd-info,vcdimager"
|
||||||
|
|
||||||
PACKAGES += "${PN}-utils"
|
PACKAGES += "${PN}-utils"
|
||||||
|
|
||||||
FILES_${PN} = "${libdir}/${PN}${SOLIB}"
|
FILES_${PN} = "${libdir}/${BPN}${SOLIB}"
|
||||||
FILES_${PN}-utils = "${bindir}/*"
|
FILES_${PN}-utils = "${bindir}/*"
|
||||||
|
|
||||||
python populate_packages_prepend () {
|
python libcdio_split_packages() {
|
||||||
glibdir = d.expand('${libdir}')
|
libdir = d.expand('${libdir}')
|
||||||
do_split_packages(d, glibdir, '^lib(.*)\.so\..*', 'lib%s', 'gstreamer %s library', extra_depends='', allow_links=True)
|
do_split_packages(d, libdir, '^lib(.*)\.so\..*', 'lib%s', 'libcdio %s library', extra_depends='', allow_links=True)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PACKAGESPLITFUNCS =+ "libcdio_split_packages"
|
||||||
|
|||||||
Reference in New Issue
Block a user