blob: 1a96b84f82eff442762a10c762bcd93781a67fef (
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
|
# Maintainer: Guest One <theguestone at gmail dot com>
pkgname=synthv1
pkgver=0.3.3
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')
install="$pkgname.install"
source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('18bd21921ee65b718b2feb1d0ab03ac7')
build() {
cd "$srcdir/$pkgname-$pkgver"
# x86_64 lib path fix
sed -i "s/lib64/lib/" src/src_lv2.pro
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
|