speexdsp: adopted port

This commit is contained in:
Tim Biermann 2021-01-29 00:04:34 +00:00
parent a2fabe2958
commit 51d90923e2
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/Wm8WRFU/q66mV4eJi8qT7YLKk174C2NqjtZ5OaoMrmudfzQl5DQ63GFFyR9OuLff0PpwjZTCYJU1h+bi2Of0ws=
SHA256 (Pkgfile) = 3cfc0cdb832a3c677508f1657c6074f80af445f8caf82e3197e7b8e424809fa7
RWSE3ohX2g5d/ZBEC4QVIamti5f2ZCTB1UH3vib8s47nDTt4J6BzG+BsM26vVVuVwX4o5ez8QjZUkpzvUmJ7gzWyfuZRHBtESgg=
SHA256 (Pkgfile) = d25dc9cf739611dbe698735adff18f1a0e5544a4292507bd4087b6a3f8906722
SHA256 (.footprint) = 3b6b181dd9caeab3b4d6f7ab60f84cf872b18f470539a87406d469c16871e36b
SHA256 (speexdsp-1.2.0.tar.gz) = 682042fc6f9bee6294ec453f470dadc26c6ff29b9c9e9ad2ffc1f4312fd64771

View File

@ -1,20 +1,20 @@
# Description: DSP library derived from speex
# URL: https://www.speex.org/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# URL: https://www.speex.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
name=speexdsp
version=1.2.0
release=1
source=(http://downloads.us.xiph.org/releases/speex/$name-$version.tar.gz)
source=(https://ftp.osuosl.org/pub/xiph/releases/speex/$name-$version.tar.gz)
build(){
cd $name-$version
cd $name-$version
./configure \
--prefix=/usr
./configure \
--prefix=/usr
sed -i -e '/^SUBDIRS *=/s|\bdoc\b||' Makefile
sed -i -e '/^SUBDIRS *=/s|\bdoc\b||' Makefile
make
make DESTDIR=$PKG install
make
make DESTDIR=$PKG install
}