summaryrefslogtreecommitdiff
path: root/repo/spandsp
diff options
context:
space:
mode:
Diffstat (limited to 'repo/spandsp')
-rw-r--r--repo/spandsp/spandsp.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/spandsp/spandsp.xibuild b/repo/spandsp/spandsp.xibuild
new file mode 100644
index 0000000..af35f57
--- /dev/null
+++ b/repo/spandsp/spandsp.xibuild
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+NAME="spandsp"
+DESC="SpanDSP is a library of DSP functions for telephony"
+
+MAKEDEPS=" tiff"
+
+PKG_VER=0.0.6
+SOURCE="https://deb.debian.org/debian/pool/main/s/spandsp/spandsp_$PKG_VER+dfsg.orig.tar.xz"
+
+build() {
+ cd "$BUILD_ROOT"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info
+ make
+}
+
+package() {
+ make -j1 DESTDIR="$PKG_DEST" install
+}
+