blob: 08c362c8c7d3bb2f924423bea63878f91507e695 (
plain)
1 # Description: Library for manipulating sound files.
2 # URL: http://www.mega-nerd.com/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 }
|