blob: 58b7190997b3c65b0c95b80e72c31ca8a6fb0222 (
plain)
1 # Description: Library for manipulating sound files.
2 # URL: http://www.mega-nerd.com/libsndfile
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Jay Dolan, jdolan at jdolan dot dyndns dot org
5 # Depends on: flac alsa-lib libvorbis
6
7 name=libsndfile
8 version=1.0.25
9 release=1
10 source=(http://www.mega-nerd.com/$name/files/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --mandir=/usr/man \
18 --disable-static
19
20 make
21 make DESTDIR=$PKG install
22 rm -r $PKG/usr/share/doc
23 rmdir $PKG/usr/share
24 }
|