blob: 18e89c9fd44001c7088cc5c4c67f256f6743114f (
plain)
1 # Description: Sound sample rate conversion library.
2 # URL: https://libsndfile.github.io/libsamplerate/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libsndfile
5 # Optional: fftw
6
7 name=libsamplerate
8 version=0.2.1
9 release=1
10 source=(https://github.com/libsndfile/libsamplerate/releases/download/$version/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/share/doc
20 rmdir $PKG/usr/share
21 }
|