29 lines
561 B
Plaintext
29 lines
561 B
Plaintext
# Description: CD paranoia libraries from libcdio
|
|
# URL: http://www.gnu.org/software/libcdio/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libcdio
|
|
|
|
name=libcdio-paranoia
|
|
version=10.2+0.94+2
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/libcdio/$name-$version.tar.gz
|
|
enable_symbol_versions.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/enable_symbol_versions.patch
|
|
autoreconf -fi
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-cpp-progs \
|
|
--disable-example-progs
|
|
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/man/jp
|
|
}
|