29 lines
638 B
Plaintext
29 lines
638 B
Plaintext
# Description: Codec designed for interactive speech and audio transmission over the Internet.
|
|
# URL: http://www.opus-codec.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
|
|
|
name=opus
|
|
version=1.1
|
|
release=1
|
|
source=(http://downloads.us.xiph.org/releases/opus/opus-$version.tar.gz
|
|
1.1-fix-configure.ac-shell-bug.patch)
|
|
|
|
build() {
|
|
cd opus-$version
|
|
|
|
patch -p1 -i $SRC/1.1-fix-configure.ac-shell-bug.patch
|
|
autoreconf -i
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--enable-custom-modes \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|