opusfile: new port at 0.12

This commit is contained in:
Luis
2023-11-03 05:04:14 +00:00
parent 9ae4b95fdb
commit 925b1ca6f2
3 changed files with 37 additions and 0 deletions

1
main/opusfile/.checksums Normal file
View File

@@ -0,0 +1 @@
45e8c62f6cd413395223c82f06bfa8ec opusfile-0.12.tar.gz

15
main/opusfile/.pkgfiles Normal file
View File

@@ -0,0 +1,15 @@
opusfile-0.12-1
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/opusfile.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libopusfile.so -> libopusfile.so.0.4.5
lrwxrwxrwx root/root usr/lib/libopusfile.so.0 -> libopusfile.so.0.4.5
-rwxr-xr-x root/root usr/lib/libopusfile.so.0.4.5
lrwxrwxrwx root/root usr/lib/libopusurl.so -> libopusurl.so.0.4.5
lrwxrwxrwx root/root usr/lib/libopusurl.so.0 -> libopusurl.so.0.4.5
-rwxr-xr-x root/root usr/lib/libopusurl.so.0.4.5
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/opusfile.pc
-rw-r--r-- root/root usr/lib/pkgconfig/opusurl.pc

21
main/opusfile/spkgbuild Normal file
View File

@@ -0,0 +1,21 @@
# description : library for playback of opus streams in the ogg container
# homepage : https://www.opus-codec.org/
# depends : libogg opus
name=opusfile
version=0.12
release=1
source="https://downloads.xiph.org/releases/opus/$name-$version.tar.gz"
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static \
--disable-doc
make
make DESTDIR=$PKG install
# clean up footprint
rm -f $PKG/usr/lib/*.la
rm -rf $PKG/usr/share
}