mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
be1037ad7c
Adding UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX fix UNKNOWN_BROKEN status from running devtool check-upgrade-status. The next version of the package can be found from upstream sources. Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
28 lines
974 B
BlitzBasic
28 lines
974 B
BlitzBasic
SUMMARY = "library to read digital audio CDs with error correction"
|
|
HOMEPAGE = "http://www.gnu.org/software/libcdio/"
|
|
BUGTRUCKER = "https://github.com/rocky/libcdio-paranoia/issues/"
|
|
SECTION = "libs"
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
DEPENDS = "libcdio"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/libcdio/${BP}.tar.bz2"
|
|
SRC_URI[sha256sum] = "33b1cf305ccfbfd03b43936975615000ce538b119989c4bec469577570b60e8a"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/rocky/libcdio-paranoia/releases"
|
|
UPSTREAM_CHECK_REGEX = "release-(?P<pver>\d+(\.\d+)+\+\d+(\.\d+)+)"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGES += "${PN}-utils"
|
|
|
|
FILES:${PN} = "${libdir}/${BPN}${SOLIB}"
|
|
FILES:${PN}-utils = "${bindir}/*"
|
|
|
|
python libcdio_split_packages() {
|
|
libdir = d.expand('${libdir}')
|
|
do_split_packages(d, libdir, r'^lib(.*)\.so\..*', 'lib%s', 'libcdio %s library', extra_depends='', allow_links=True)
|
|
}
|
|
|
|
PACKAGESPLITFUNCS =+ "libcdio_split_packages"
|