20 lines
462 B
Plaintext
20 lines
462 B
Plaintext
# Description: Library for manipulating sound files.
|
|
# URL: http://www.mega-nerd.com/libsndfile
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: alsa-lib flac libvorbis opus python3
|
|
|
|
name=libsndfile
|
|
version=1.0.30
|
|
release=1
|
|
source=(https://github.com/libsndfile/libsndfile/releases/download/v$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|