diff options
author | root <root@rshg054.dnsready.net> | 2013-07-11 01:38:47 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-11 01:38:47 -0700 |
commit | 2e85ee969c4be5762301fc1447315f132aca1fc8 (patch) | |
tree | 45ce2476a7dec9372c4d13a039237544ff6898d1 /community/guitarix2/PKGBUILD | |
parent | b509d58f0ff9d5b9167eb65b0264d014c8ac9d66 (diff) |
Thu Jul 11 01:37:50 PDT 2013
Diffstat (limited to 'community/guitarix2/PKGBUILD')
-rw-r--r-- | community/guitarix2/PKGBUILD | 37 |
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" +} |