23 lines
542 B
Plaintext
23 lines
542 B
Plaintext
# Description: Library for manipulating sound files.
|
|
# URL: http://www.mega-nerd.com/libsndfile
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: alsa-lib-32 flac-32 libsndfile libvorbis-32
|
|
|
|
name=libsndfile-32
|
|
version=1.2.2
|
|
release=1
|
|
source=(https://github.com/libsndfile/libsndfile/releases/download/$version/libsndfile-$version.tar.xz)
|
|
|
|
build() {
|
|
cd libsndfile-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share/man,share}
|
|
}
|