summaryrefslogtreecommitdiff
path: root/repo/calf
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
committerdavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
commitd2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch)
tree684a17eebf446aa1adab1097616f1882c8d51568 /repo/calf
parentd1fc3393cca72e8e432f827f7624e38734fad6dc (diff)
added deps for qemu
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
+}