diff options
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/triceratops-lv2/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/triceratops-lv2/PKGBUILD b/pcr/triceratops-lv2/PKGBUILD new file mode 100644 index 000000000..ff02793aa --- /dev/null +++ b/pcr/triceratops-lv2/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Guest One <theguestone at gmail dot com> + +pkgname=triceratops-lv2 +pkgver=0.1.6c +pkgrel=1 +pkgdesc="Polyphonic synthesizer LV2 plugin" +arch=('i686') +url="http://sourceforge.net/projects/triceratops/" +license=('GPL') +depends=('gtkmm' 'lv2') +makedepends=('python2') +source=("http://downloads.sourceforge.net/project/${pkgname/-lv2}/$pkgname-v$pkgver.tar.gz") +md5sums=('7a0755876c4d3af6f1b4cac899679472') + +build() { + cd "$srcdir/$pkgname-v$pkgver" + python2 waf configure --prefix=/usr + python2 waf +} + +package() { + cd "$srcdir/$pkgname-v$pkgver" + DESTDIR="$pkgdir/" python2 waf install +} + +# vim:set ts=2 sw=2 et: |