1
0
forked from ports/opt

opus: contrib -> opt

This commit is contained in:
Danny Rawlins 2018-03-17 16:08:53 +11:00
parent 7c2f530569
commit fe2d531bfe
4 changed files with 51 additions and 0 deletions

19
opus/.footprint Normal file
View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/opus/
-rw-r--r-- root/root usr/include/opus/opus.h
-rw-r--r-- root/root usr/include/opus/opus_custom.h
-rw-r--r-- root/root usr/include/opus/opus_defines.h
-rw-r--r-- root/root usr/include/opus/opus_multistream.h
-rw-r--r-- root/root usr/include/opus/opus_types.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libopus.a
-rwxr-xr-x root/root usr/lib/libopus.la
lrwxrwxrwx root/root usr/lib/libopus.so -> libopus.so.0.6.1
lrwxrwxrwx root/root usr/lib/libopus.so.0 -> libopus.so.0.6.1
-rwxr-xr-x root/root usr/lib/libopus.so.0.6.1
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/opus.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/opus.m4

1
opus/.md5sum Normal file
View File

@ -0,0 +1 @@
54bc867f13066407bc7b95be1fede090 opus-1.2.1.tar.gz

5
opus/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/dBbvCn58Nyz9vcPtyDewJ4MTQezvmSIv0SerTiUa4jVchD0qisOXQXBvoftfVga+cn/T1UdeTdXG8YK2WOqrwg=
SHA256 (Pkgfile) = aec4248a755997aa8b6c42c773a2ee77f53e8cecabd4a8538c2e274687825d27
SHA256 (.footprint) = 83b4b250474590787e12031117a7dce8150771e0433938b2379943b1bfd966d8
SHA256 (opus-1.2.1.tar.gz) = cfafd339ccd9c5ef8d6ab15d7e1a412c054bf4cb4ecbbbcc78c12ef2def70732

26
opus/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# 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.2.1
release=1
source=(https://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--enable-custom-modes \
--enable-intrinsics \
--enable-rtcd \
--enable-ambisonics \
--disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}