blob: 0a3f1fb7f38575bcfcaa0c28761d0cd79b6a59a4 (
plain)
1 # Description: Library for manipulating sound files.
2 # URL: https://libsndfile.github.io/libsndfile/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: alsa-lib flac libvorbis opus python3
5
6 name=libsndfile
7 version=1.0.30
8 release=1
9 source=(https://github.com/libsndfile/libsndfile/releases/download/v$version/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17
18 rm -r $PKG/usr/share/doc
19 }
|