summaryrefslogtreecommitdiffstats
path: root/opus/MAKEPKG
diff options
context:
space:
mode:
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