blob: 5bfc61496ef1b560ecee52fa965263aa25c912c6 (
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
26
27
28
29
|
#!/bin/sh
NAME="speexdsp"
DESC="A voice compression format (DSP)"
MAKEDEPS="autoconf automake libtool"
PKG_VER=1.2.0
SOURCE="https://downloads.xiph.org/releases/speex/speexdsp-$PKG_VER.tar.gz"
prepare() {
apply_patches
autoreconf -vif
}
build() {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-static
make
}
package() {
make -j1 DESTDIR="$PKG_DEST" install
}
|