mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
The project switched to storing their releases on Github. Changelog: https://github.com/libcdio/libcdio-paranoia/releases/tag/release-10.2%2B2.0.2 Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 lines
1002 B
BlitzBasic
29 lines
1002 B
BlitzBasic
SUMMARY = "library to read digital audio CDs with error correction"
|
|
HOMEPAGE = "http://www.gnu.org/software/libcdio/"
|
|
BUGTRUCKER = "https://github.com/libcdio/libcdio-paranoia/issues"
|
|
SECTION = "libs"
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
DEPENDS = "libcdio"
|
|
|
|
SRC_URI = "${GITHUB_BASE_URI}/download/release-${PV}/${BP}.tar.bz2"
|
|
SRC_URI[sha256sum] = "186892539dedd661276014d71318c8c8f97ecb1250a86625256abd4defbf0d0c"
|
|
|
|
GITHUB_BASE_URI = "https://github.com/libcdio/${BPN}/releases/"
|
|
|
|
UPSTREAM_CHECK_REGEX = "release-(?P<pver>\d+(\.\d+)+\+\d+(\.\d+)+)"
|
|
|
|
inherit autotools pkgconfig github-releases
|
|
|
|
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"
|