summaryrefslogtreecommitdiff
path: root/repo/caps/caps.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/caps/caps.xibuild')
-rw-r--r--repo/caps/caps.xibuild29
1 files changed, 29 insertions, 0 deletions
diff --git a/repo/caps/caps.xibuild b/repo/caps/caps.xibuild
new file mode 100644
index 0000000..7e08c48
--- /dev/null
+++ b/repo/caps/caps.xibuild
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+NAME="caps"
+DESC="The LADSPA C* Audio Plugin Suite"
+
+MAKEDEPS="make ladspa "
+
+PKG_VER=0.9.26
+SOURCE="http://quitte.de/dsp/caps_${PKG_VER}.tar.bz2"
+ADDITIONAL="
+fix-cstdint-missing.patch
+"
+
+prepare () {
+ apply_patches
+}
+
+build () {
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/etc \
+ --disable-static
+ make
+}
+
+package () {
+ make PREFIX=$PKG_DEST/usr install
+}