contrib/speex/Pkgfile
2007-05-26 02:30:01 +10:00

26 lines
589 B
Plaintext

# Description: A free codec library for speech.
# URL: http://www.speex.org/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Younes Hafri ycrux at club-internet dot fr
# Depends on: libogg
name=speex
version=1.2beta2
release=1
source=(http://downloads.us.xiph.org/releases/speex/speex-$version.tar.gz)
build() {
cd speex-$version
find $SRC -type f -exec sed -i -e 's|/share/man|/man|g' {} \;
./configure \
--prefix=/usr \
--disable-static \
--enable-epic-48k
sed -i -e "/^SUBDIRS = /s/doc //" Makefile
make
make prefix=$PKG/usr install
}