19 lines
404 B
Plaintext
19 lines
404 B
Plaintext
# Description: an open-source patent-free voice codec
|
|
# URL: http://www.speex.org
|
|
# Maintainer:
|
|
# Packager:
|
|
# Depends on: libogg
|
|
|
|
name=speex
|
|
version=1.0.5
|
|
release=1
|
|
source=(ftp://ftp.freebsd.org/pub/FreeBSD/ports/local-distfiles/ahze/speex-$version.tar.gz)
|
|
|
|
build () {
|
|
cd speex-$version
|
|
./configure --prefix=/usr
|
|
make CFLAGS="$CFLAGS"
|
|
make prefix=$PKG/usr install
|
|
mv $PKG/usr/share/man $PKG/usr/
|
|
}
|