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