blob: 405b00643cac5d5f833426b15bfc76c007466cc1 (
plain)
1 # Description: The Compact Disc Input and Control library contains a library for CD-ROM and CD image access.
2 # URL: http://www.gnu.org/software/libcdio/
3 # Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
4 # Packager: Tim Biermann, tim_biermann at web dot de
5 # Depends on: cdparanoia libcddb
6
7 name=libcdio
8 version=0.78.2
9 release=1
10 source=(http://ftp.gnu.org/gnu/libcdio/libcdio-$version.tar.gz)
11
12 build() {
13 cd libcdio-$version
14
15 ./configure \
16 --prefix=/usr \
17 --with-cd-drive \
18 --with-cd-info \
19 --with-cd-paranoia \
20 --with-cdda-player \
21 --with-cd-paranoia-name \
22 --with-cd-read \
23 --with-iso-info \
24 --with-iso-read \
25 --disable-static
26
27 make
28 make DESTDIR=$PKG install
29 rm $PKG/usr/bin/yes
30 rm -r $PKG/usr/man
31 rm -rf $PKG/usr/info
32 }
|