contrib/speex/Pkgfile

26 lines
589 B
Plaintext
Raw Normal View History

# 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
2006-12-13 08:14:21 +01:00
name=speex
2007-05-25 12:53:55 +02:00
version=1.2beta2
release=2
source=(http://downloads.us.xiph.org/releases/speex/speex-$version.tar.gz)
build() {
cd speex-$version
2007-05-25 12:53:55 +02:00
find $SRC -type f -exec sed -i -e 's|/share/man|/man|g' {} \;
./configure \
--prefix=/usr \
2007-05-25 12:53:55 +02:00
--disable-static \
--enable-epic-48k
2007-05-25 12:53:55 +02:00
sed -i -e "/^SUBDIRS = /s/doc //" Makefile
make
make prefix=$PKG/usr install
}