summaryrefslogtreecommitdiff
path: root/repo/speexdsp
diff options
context:
space:
mode:
Diffstat (limited to 'repo/speexdsp')
-rw-r--r--repo/speexdsp/speexdsp.xibuild29
1 files changed, 29 insertions, 0 deletions
diff --git a/repo/speexdsp/speexdsp.xibuild b/repo/speexdsp/speexdsp.xibuild
new file mode 100644
index 0000000..5bfc614
--- /dev/null
+++ b/repo/speexdsp/speexdsp.xibuild
@@ -0,0 +1,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
+}
+