summaryrefslogtreecommitdiff
path: root/repo/calf
diff options
context:
space:
mode:
Diffstat (limited to 'repo/calf')
-rw-r--r--repo/calf/calf.xibuild30
1 files changed, 30 insertions, 0 deletions
diff --git a/repo/calf/calf.xibuild b/repo/calf/calf.xibuild
new file mode 100644
index 0000000..1629a87
--- /dev/null
+++ b/repo/calf/calf.xibuild
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+NAME="calf"
+DESC="Calf Studio Gear"
+
+MAKEDEPS="autoconf automake expat fluidsynth gtk2 jack libtool lv2"
+
+PKG_VER=0.90.3
+SOURCE="http://calf-studio-gear.org/files/calf-$PKG_VER.tar.gz"
+
+prepare() {
+ autoreconf -vif
+}
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --localstatedir=/var
+ make
+}
+
+check() {
+ make check
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}