contrib/libsamplerate/Pkgfile
2021-01-31 20:36:36 +11:00

22 lines
487 B
Plaintext

# Description: Sound sample rate conversion library.
# URL: https://libsndfile.github.io/libsamplerate/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libsndfile
# Optional: fftw
name=libsamplerate
version=0.2.1
release=1
source=(https://github.com/libsndfile/libsamplerate/releases/download/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
rmdir $PKG/usr/share
}