libsndfile: adopted port

This commit is contained in:
Tim Biermann 2023-08-27 17:36:39 +02:00
parent a958ba2e28
commit acb40ad1ac
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eh+1IPyKL1U0Fq9aZu7dssJsZGwpHqNo+TICRrGpmzCspz5qPX5bF/iOiV0O1lGMugNRItlnhcHQzkzBJXoCQo=
SHA256 (Pkgfile) = 1055ca2f31ff5c27e5f343d8aae2074ac956186d41a7c06e289605da909d96a7
RWSE3ohX2g5d/Tv7yribfiagAIyA4GRML/Q73mlcqUJM2aZ9dStDZbEvH1iMRMSX6jM+nH1npIr5EjH9zGD30Y+kACWWQJHRDgc=
SHA256 (Pkgfile) = 5c026ca6d82b14a190fcd94762a364a4c340315a7910ccc32899698b54c14dfa
SHA256 (.footprint) = 362d4753695712635ecabaebf19a9fd1a555b00feaec82a98f24af658584da1b
SHA256 (libsndfile-1.2.2.tar.xz) = 3799ca9924d3125038880367bf1468e53a1b7e3686a934f098b7e1d286cdb80e

View File

@ -1,6 +1,6 @@
# Description: Library for manipulating sound files.
# Description: Library for manipulating sound files
# URL: https://libsndfile.github.io/libsndfile/
# Maintainer: Danny Rawlins, crux at romster dot me
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: alsa-lib flac libvorbis opus python3
name=libsndfile
@ -9,11 +9,11 @@ release=1
source=(https://github.com/libsndfile/libsndfile/releases/download/$version/$name-$version.tar.xz)
build() {
cd $name-$version
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
rm -r $PKG/usr/share/doc
}