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

Generated by cgit