blob: 9c22a5199d1d5459d079c91d22b34da4c495d09b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
MAKEDEPS="make"
DEPS="musl"
DESC="Totally open, royalty-free, highly versatile audio codec"
PKG_VER=1.3.1
SOURCE=https://archive.mozilla.org/pub/opus/opus-$PKG_VER.tar.gz
build () {
CFLAGS="$CFLAGS -O2" ./configure --prefix=/usr \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
--enable-custom-modes
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|