2023-09-16 10:26:33 +02:00
|
|
|
# Description: a totally open, royalty-free, highly versatile audio codec
|
2021-05-30 21:26:24 +10:00
|
|
|
# URL: https://www.opus-codec.org/
|
2023-09-16 10:26:33 +02:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2021-05-30 21:26:24 +10:00
|
|
|
# Depends on: opus
|
|
|
|
|
|
|
|
name=opus-32
|
2024-03-05 21:00:54 +01:00
|
|
|
version=1.5.1
|
2021-05-30 21:26:24 +10:00
|
|
|
release=1
|
2024-03-09 13:54:34 +01:00
|
|
|
source=(https://downloads.xiph.org/releases/opus/opus-$version.tar.gz)
|
2021-05-30 21:26:24 +10:00
|
|
|
|
|
|
|
build() {
|
2023-04-30 14:10:37 +10:00
|
|
|
meson setup opus-$version build \
|
2021-05-30 21:26:24 +10:00
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
2023-04-30 14:10:37 +10:00
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true \
|
|
|
|
-D custom-modes=true \
|
|
|
|
-D tests=disabled
|
2021-05-30 21:26:24 +10:00
|
|
|
|
2023-04-30 14:10:37 +10:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2021-05-30 21:26:24 +10:00
|
|
|
|
2023-04-30 14:10:37 +10:00
|
|
|
rm -r $PKG/usr/include
|
2021-05-30 21:26:24 +10:00
|
|
|
}
|