2023-08-27 17:36:39 +02:00
|
|
|
# Description: Library for manipulating sound files
|
2020-11-23 13:06:33 +01:00
|
|
|
# URL: https://libsndfile.github.io/libsndfile/
|
2023-08-27 17:36:39 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
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
|
2023-08-15 09:46:44 +02:00
|
|
|
version=1.2.2
|
2014-01-19 22:10:49 +01:00
|
|
|
release=1
|
2022-05-23 00:17:02 +10:00
|
|
|
source=(https://github.com/libsndfile/libsndfile/releases/download/$version/$name-$version.tar.xz)
|
2014-01-19 22:10:49 +01:00
|
|
|
|
|
|
|
build() {
|
2023-08-27 17:36:39 +02:00
|
|
|
cd $name-$version
|
2014-01-19 22:10:49 +01:00
|
|
|
|
2023-08-27 17:36:39 +02:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2015-11-04 12:34:50 +11:00
|
|
|
|
2023-08-27 17:36:39 +02:00
|
|
|
rm -r $PKG/usr/share/doc
|
2014-01-19 22:10:49 +01:00
|
|
|
}
|