summaryrefslogtreecommitdiff
path: root/community/guitarix2/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/guitarix2/PKGBUILD')
-rw-r--r--community/guitarix2/PKGBUILD37
1 files changed, 37 insertions, 0 deletions
diff --git a/community/guitarix2/PKGBUILD b/community/guitarix2/PKGBUILD
new file mode 100644
index 000000000..6eff8e6c2
--- /dev/null
+++ b/community/guitarix2/PKGBUILD
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 93760 2013-07-10 02:27:39Z speps $
+# Maintainer: speps <speps at aur dot archlinux dot org>
+
+pkgname=guitarix2
+pkgver=0.27.1
+pkgrel=1
+pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
+arch=('i686' 'x86_64')
+url="http://guitarix.sourceforge.net/"
+license=('GPL')
+depends=('gtkmm' 'jack' 'liblrdf' 'boost-libs' 'zita-convolver' 'zita-resampler')
+makedepends=('python2' 'boost' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.bz2")
+md5sums=('65e0917f9529460931be522e2879e514')
+
+build() {
+ cd "$srcdir/guitarix-$pkgver"
+ python2 waf configure --prefix=/usr \
+ --no-desktop-update \
+ --no-ldconfig \
+ --no-faust \
+ --optimization \
+ --shared-lib \
+ --lib-dev \
+ --build-lv2
+ python2 waf build
+}
+
+package() {
+ cd "$srcdir/guitarix-$pkgver"
+ python2 waf install --destdir="$pkgdir"
+}