# Description: Ücretsiz konuşma için ücretsiz bir codec bileşeni
# URL: http://www.speex.org/
# Packager: milisarge
# Depends on: 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
}  
