32 lines
793 B
Plaintext
32 lines
793 B
Plaintext
# Description: The Compact Disc Input and Control library contains a library for CD-ROM and CD image access.
|
|
# URL: http://www.gnu.org/software/libcdio/
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: Tim Biermann, tim_biermann at web dot de
|
|
# Depends on: cdparanoia vcdimager libcddb
|
|
|
|
name=libcdio
|
|
version=0.78.2
|
|
release=1
|
|
source=(http://ftp.gnu.org/gnu/libcdio/libcdio-$version.tar.gz)
|
|
|
|
build() {
|
|
cd libcdio-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-cd-drive \
|
|
--with-cd-info \
|
|
--with-cd-paranoia \
|
|
--with-cdda-player \
|
|
--with-cd-paranoia-name \
|
|
--with-cd-read \
|
|
--with-iso-info \
|
|
--with-iso-read
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm $PKG/usr/bin/yes
|
|
rm -r $PKG/usr/man
|
|
rm -rf $PKG/usr/info
|
|
}
|
|
|