blob: fe0b1f5a03c4a1e8abb804ea468f901b58d85242 (
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
37
38
39
40
|
# $Id: PKGBUILD 115604 2014-07-12 16:34:00Z speps $
# Maintainer: speps <speps at aur dot archlinux dot org>
pkgname=synthv1
pkgver=0.5.0
pkgrel=1
pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic synthesizer with stereo fx"
arch=(i686 x86_64)
url="http://$pkgname.sourceforge.net/$pkgname-index.html"
license=('GPL')
groups=('lv2-plugins')
depends=('jack' 'liblo' 'lv2' 'qt4' 'shared-mime-info')
install="$pkgname.install"
source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('8c39ce2180abb6dedca4906fe1c499ed')
prepare() {
cd $pkgname-$pkgver
# x86_64 lib path fix
sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
# i686 -reduce-relocations (Qt5)
# if [[ $CARCH = i686 ]]; then
# export CXXFLAGS+=" -fPIE"
# fi
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
|