opt/libsndfile/Pkgfile

20 lines
467 B
Plaintext
Raw Normal View History

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
# 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-22 16:17:02 +02: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
2023-08-27 17:36:39 +02:00
rm -r $PKG/usr/share/doc
2014-01-19 22:10:49 +01:00
}