summaryrefslogtreecommitdiff
path: root/opus/Pkgfile
blob: c0ded9c1d4fa0910f012383c1ed8f77017c27a82 (plain)
    1 # Description: Codec designed for interactive speech and audio transmission over the Internet.
    2 # URL: https://www.opus-codec.org/
    3 # Maintainer: Danny Rawlins, crux at romster dot me
    4 
    5 name=opus
    6 version=1.3.1
    7 release=1
    8 source=(https://archive.mozilla.org/pub/$name/$name-$version.tar.gz)
    9 
   10 build() {
   11 	cd $name-$version
   12 
   13 	./configure \
   14 		--prefix=/usr \
   15 		--enable-custom-modes \
   16 		--enable-intrinsics \
   17 		--enable-rtcd \
   18 		--enable-ambisonics \
   19 		--disable-doc \
   20 		--disable-nls
   21 
   22 	make
   23 	make DESTDIR=$PKG install
   24 
   25 	find $PKG -name '*.la' -delete
   26 }

Generated by cgit