blob: 427d5c0070cfb4b01a73759860cc2e0301b20558 (
plain)
1 # Description: Library for manipulating sound files.
2 # URL: http://www.mega-nerd.com/libsndfile
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: alsa-lib-32 flac-32 libsndfile libvorbis-32
5
6 name=libsndfile-32
7 version=1.2.0
8 release=1
9 source=(https://github.com/libsndfile/libsndfile/releases/download/$version/libsndfile-$version.tar.xz)
10
11 build() {
12 cd libsndfile-$version
13
14 ./configure \
15 --prefix=/usr \
16 --libdir=/usr/lib32
17
18 make
19 make DESTDIR=$PKG install
20
21 rm -r $PKG/usr/{bin,include,share/man,share}
22 }
|