opus-32: initial import

This commit is contained in:
Danny Rawlins 2021-05-30 21:26:24 +10:00
parent fe5f939254
commit 0c86a2a92f
3 changed files with 42 additions and 0 deletions

8
opus-32/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
-rw-r--r-- root/root usr/lib32/libopus.a
lrwxrwxrwx root/root usr/lib32/libopus.so -> libopus.so.0.8.0
lrwxrwxrwx root/root usr/lib32/libopus.so.0 -> libopus.so.0.8.0
-rwxr-xr-x root/root usr/lib32/libopus.so.0.8.0
drwxr-xr-x root/root usr/lib32/pkgconfig/
-rw-r--r-- root/root usr/lib32/pkgconfig/opus.pc

5
opus-32/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/compat-32.pub
RWSwxGo/zH7eXYgatQ6heLuLBSZom6tNTVHkg2rRgCT/WjdmTQE/rZdwzbGPRY5IdDWLZ13MCsuFQMiOg37l9VhnQhhsn1zbTgY=
SHA256 (Pkgfile) = 07129f9168e85b83acf5d0fdee7c4a00c1317aee65cadd7dbb2529a6f08dea20
SHA256 (.footprint) = a263b36020262287ad5cd7897c214bde728582ef7385ea0641c90fb0bede073d
SHA256 (opus-1.3.1.tar.gz) = 65b58e1e25b2a114157014736a3d9dfeaad8d41be1c8179866f144a2fb44ff9d

29
opus-32/Pkgfile Normal file
View File

@ -0,0 +1,29 @@
# Description: Codec designed for interactive speech and audio transmission over the Internet.
# URL: https://www.opus-codec.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: opus
name=opus-32
version=1.3.1
release=1
source=(https://archive.mozilla.org/pub/opus/opus-$version.tar.gz)
build() {
cd opus-$version
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--enable-custom-modes \
--enable-intrinsics \
--enable-rtcd \
--enable-ambisonics \
--disable-doc \
--disable-nls
make
make DESTDIR=$PKG install
find $PKG -name '*.la' -delete
rm -r $PKG/usr/{share,include}
}