2023-08-19 11:47:58 +02:00
|
|
|
# Description: a totally open, royalty-free, highly versatile audio codec
|
|
|
|
# URL: https://www.opus-codec.org
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2018-03-17 16:08:53 +11:00
|
|
|
|
|
|
|
name=opus
|
2023-04-29 20:56:10 +02:00
|
|
|
version=1.4
|
2023-08-19 11:47:58 +02:00
|
|
|
release=2
|
|
|
|
source=(https://downloads.xiph.org/releases/opus/opus-$version.tar.gz)
|
2018-03-17 16:08:53 +11:00
|
|
|
|
|
|
|
build() {
|
2023-08-19 11:47:58 +02:00
|
|
|
meson setup $name-$version build \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true \
|
|
|
|
-D custom-modes=true \
|
|
|
|
-D extra-programs=disabled \
|
|
|
|
-D docs=disabled \
|
|
|
|
-D tests=disabled
|
2018-03-17 16:08:53 +11:00
|
|
|
|
2023-08-19 11:47:58 +02:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2018-03-17 16:08:53 +11:00
|
|
|
}
|