summaryrefslogtreecommitdiffstats
path: root/opus/MAKEPKG
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /opus/MAKEPKG
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'opus/MAKEPKG')
-rw-r--r--opus/MAKEPKG31
1 files changed, 31 insertions, 0 deletions
diff --git a/opus/MAKEPKG b/opus/MAKEPKG
new file mode 100644
index 0000000..d4cde71
--- /dev/null
+++ b/opus/MAKEPKG
@@ -0,0 +1,31 @@
1#!/bin/mkpkg
2# description: Codec for interactive speech and audio transmission over the Internet
3# url: https://opus-codec.org
4
5name=opus
6version=1.6.1
7release=1
8source=(https://downloads.xiph.org/releases/opus/opus-$version.tar.gz)
9sha256sums=(
10 "6ffcb593207be92584df15b32466ed64bbec99109f007c82205f0194572411a1"
11)
12
13build() {
14 cd $name-$version
15 CONFIG_SHELL=/bin/bash ./configure \
16 --prefix=/usr \
17 --disable-static \
18 --disable-doc \
19 --disable-extra-programs
20 make
21 make DESTDIR=$PKG install
22
23 rm -f $PKG/usr/lib/libopus.la
24}
25
26signify() {
27 untrusted comment: public key
28 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
29}
30
31# vim: filetype=sh