diff options
Diffstat (limited to 'pcr/synthv1/PKGBUILD')
-rw-r--r-- | pcr/synthv1/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pcr/synthv1/PKGBUILD b/pcr/synthv1/PKGBUILD new file mode 100644 index 000000000..2cce2ef0b --- /dev/null +++ b/pcr/synthv1/PKGBUILD @@ -0,0 +1,30 @@ + +pkgname=synthv1 +pkgver=0.3.4 +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=('63ca2f7961bbc708928d2f792e32d166') + +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: |