summaryrefslogtreecommitdiff
path: root/community/calf/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-16 00:01:23 +0000
committerroot <root@rshg054.dnsready.net>2012-07-16 00:01:23 +0000
commit50a1eb604b2d5503a06d56b76347faa581160245 (patch)
tree0d29be50534518ab002e0e6da90300006b3aca58 /community/calf/PKGBUILD
parent1ed995034acd07688fe8e78b1d40901bcc662155 (diff)
Mon Jul 16 00:01:23 UTC 2012
Diffstat (limited to 'community/calf/PKGBUILD')
-rw-r--r--community/calf/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/community/calf/PKGBUILD b/community/calf/PKGBUILD
new file mode 100644
index 000000000..078681e5a
--- /dev/null
+++ b/community/calf/PKGBUILD
@@ -0,0 +1,35 @@
+# Maintainer: Ray Rashif <schiv@archlinux.org>
+
+pkgname=calf
+pkgver=0.0.18.6
+pkgrel=1
+pkgdesc="LV2/DSSI/LADSPA plug-ins suite and standalone JACK host"
+arch=('i686' 'x86_64')
+url="http://calf.sf.net/"
+license=('LGPL')
+depends=('libglade' 'lash')
+makedepends=('lv2core' 'ladspa' 'dssi')
+source=("http://downloads.sf.net/$pkgname/$pkgname-$pkgver.tar.gz"
+ 'include_fix.patch')
+md5sums=('780854561dad1cb873041d7a0b98cbcd'
+ '5aab4d057fb3646c43e6dfcad4c7128f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ patch -Np1 -i "$srcdir/include_fix.patch"
+
+ ./configure --prefix=/usr \
+ --enable-experimental
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+
+ rm "$pkgdir/usr/share/icons/hicolor/icon-theme.cache"
+}
+
+# vim:set ts=2 sw=2 et: