2023-05-15 05:12:37 +02:00

58 lines
1.5 KiB
Plaintext

# Contributor: Carlo Landmeter
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libcdio
pkgver=2.1.0
pkgrel=3
pkgdesc="GNU Compact Disc Input and Control Library"
url="https://www.gnu.org/software/libcdio/"
arch="all"
license="GPL-3.0-or-later"
checkdepends="bash"
makedepends="libcddb-dev ncurses-dev linux-headers"
subpackages="$pkgname-dev $pkgname-doc $pkgname-tools ${pkgname}++:_cpp"
source="https://ftp.gnu.org/gnu/libcdio/libcdio-$pkgver.tar.bz2
disable-broken-test.patch
format-security.patch
"
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-vcd-info \
--disable-static \
--disable-rpath \
--disable-cpp-progs
make
}
check() {
make check
}
package() {
make -j1 DESTDIR="$pkgdir" install
}
tools() {
pkgdesc="libcdio example tools"
install -d "$subpkgdir"/usr
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
_cpp() {
pkgdesc="libcdio bindings for C++"
install -d "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/*++.* "$subpkgdir"/usr/lib/
}
sha512sums="
c290821da55fd9ae366670a58857aa6efcebc9f25b7caea063cf12f9cbda84fe770c5f59f972227fda50517ca58c5f39c0137daa0f93179e3daa45303d8b610f libcdio-2.1.0.tar.bz2
be0149128bb2fa131f514bcff848279d826340a99a05b958e104f4640bda1a89d6146b0ec348783f4bbd8a3c313c41297152f75ee04f492f08b337bd79dd9c3e disable-broken-test.patch
4d66aee45804f831adab89e8cd14791176a36551fb79bcdb7ae5a36fa5bc809a33d997420f22dd8ce8e9d360dbe9cc65eb3fe865259f906857702f50359ce201 format-security.patch
"