2014-01-19 22:10:49 +01:00
|
|
|
# Description: Library for manipulating sound files.
|
2020-11-23 13:06:33 +01:00
|
|
|
# URL: https://libsndfile.github.io/libsndfile/
|
2014-11-10 23:25:50 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2020-09-29 21:03:20 +10:00
|
|
|
# Depends on: alsa-lib flac libvorbis opus python3
|
2014-01-19 22:10:49 +01:00
|
|
|
|
|
|
|
name=libsndfile
|
2021-01-30 18:59:55 +11:00
|
|
|
version=1.0.31
|
2014-01-19 22:10:49 +01:00
|
|
|
release=1
|
2021-01-30 18:59:55 +11:00
|
|
|
source=(https://github.com/libsndfile/libsndfile/releases/download/$version/$name-$version.tar.bz2)
|
2014-01-19 22:10:49 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
2020-09-29 21:03:20 +10:00
|
|
|
./configure --prefix=/usr
|
2014-01-19 22:10:49 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2015-11-04 12:34:50 +11:00
|
|
|
|
2014-01-19 22:10:49 +01:00
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
}
|