blob: c3371cd8a8734cf66a8981c41aaf67ef4cbc9af0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $Id: PKGBUILD 109674 2014-04-18 03:06:05Z speps $
# Maintainer: speps <speps at aur dot archlinux dot org>
pkgname=guitarix2
pkgver=0.29.0
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' 'librsvg' 'liblrdf' 'bluez-libs' 'boost-libs'
'zita-convolver' 'zita-resampler' 'desktop-file-utils')
makedepends=('python' 'boost' 'eigen' 'gperf' '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=('c75821c75094c9592ff0543bb2c18449')
build() {
cd guitarix-$pkgver
python waf configure --prefix=/usr \
--no-desktop-update \
--no-ldconfig \
--no-faust \
--shared-lib \
--lib-dev
python waf build
}
package() {
cd guitarix-$pkgver
python waf install --destdir="$pkgdir"
}
|