blob: 9b93dd79bf4aa681b814cabef9fa5a1b01eb30d0 (
plain)
1 # Description: A free codec library for speech.
2 # URL: http://www.speex.org/
3 # Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
4 # Packager: Younes Hafri ycrux at club-internet dot fr
5 # Depends on: libogg
6
7 name=speex
8 version=1.2beta1
9 release=2
10 source=(http://downloads.us.xiph.org/releases/speex/speex-$version.tar.gz)
11
12 build() {
13 cd speex-$version
14
15 ./configure \
16 --prefix=/usr \
17 --mandir=$PKG/usr/man \
18 --disable-oggtest \
19 --enable-epic-48k
20
21 make -j1 CFLAGS="$CFLAGS"
22 make prefix=$PKG/usr install
23 mv $PKG/usr/share/man $PKG/usr/ # Makefile ignores --mandir (1.2beta1)
24 rm -r $PKG/usr/share/doc
25 }
|