opt/opus/Pkgfile

23 lines
562 B
Plaintext
Raw Normal View History

2018-03-17 06:08:53 +01:00
# Description: Codec designed for interactive speech and audio transmission over the Internet.
2019-10-13 09:11:40 +02:00
# URL: https://www.opus-codec.org/
2018-03-17 06:08:53 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
name=opus
2023-04-29 20:56:10 +02:00
version=1.4
2018-03-17 06:08:53 +01:00
release=1
2023-04-29 20:56:10 +02:00
source=(https://github.com/xiph/opus/releases/download/v$version/$name-$version.tar.gz)
2018-03-17 06:08:53 +01:00
build() {
2023-04-29 20:56:10 +02:00
meson setup $name-$version build \
2018-03-17 06:08:53 +01:00
--prefix=/usr \
2023-04-29 20:56:10 +02:00
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D custom-modes=true \
-D tests=disabled
2018-03-17 06:08:53 +01:00
2023-04-29 20:56:10 +02:00
meson compile -C build
DESTDIR=$PKG meson install -C build
2018-03-17 06:08:53 +01:00
}