21 lines
503 B
Plaintext
21 lines
503 B
Plaintext
# Tanım: Ücretsiz konuşma için ücretsiz bir codec bileşeni
|
||
# URL: http://www.speex.org/
|
||
# Paketçi: milisarge
|
||
# Gerekler: libogg speexdsp
|
||
|
||
name=speex
|
||
version=1.2.0
|
||
release=1
|
||
|
||
source=(http://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
|
||
|
||
|
||
build() {
|
||
cd $name-$version
|
||
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static \
|
||
--enable-binaries # Must be given or configure won't use pkg-config correctly
|
||
make
|
||
make -k check
|
||
make DESTDIR=$PKG install
|
||
}
|