compat-32/libsndfile-32/Pkgfile

23 lines
542 B
Plaintext
Raw Normal View History

2013-08-10 13:16:14 +02:00
# 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
2019-08-27 13:48:19 +02:00
# Depends on: alsa-lib-32 flac-32 libsndfile libvorbis-32
2013-08-10 13:16:14 +02:00
name=libsndfile-32
2022-06-16 19:31:22 +02:00
version=1.1.0
2016-06-28 02:28:21 +02:00
release=1
2022-06-16 19:31:22 +02:00
source=(https://github.com/libsndfile/libsndfile/releases/download/$version/libsndfile-$version.tar.xz)
2013-08-10 13:16:14 +02:00
build() {
cd libsndfile-$version
./configure \
--prefix=/usr \
2020-09-29 14:50:28 +02:00
--libdir=/usr/lib32
2013-08-10 13:16:14 +02:00
make
make DESTDIR=$PKG install
2022-06-16 19:31:22 +02:00
2016-06-28 02:28:21 +02:00
rm -r $PKG/usr/{bin,include,share/man,share}
2013-08-10 13:16:14 +02:00
}