updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / rhsp / PKGBUILD
blob919ae08264b14c33619cf65169d85f7b5f844477
1 # Maintainer: Philipp Überbacher <murks at lavabit dot com>
2 pkgname=rhsp
3 pkgver=4
4 pkgrel=1
5 pkgdesc="Synth and effect plugins for rhost."
6 arch=('i686' 'x86_64')
7 url="http://sites.google.com/site/rockhardbuns/rhsp"
8 license=('GPL' 'custom:public domain')
9 depends=('cairo' 'gcc-libs')
10 install=
11 source=(http://sites.google.com/site/rockhardbuns/rhsp/plugins_src.tar.gz licenses.txt)
12 md5sums=('3e222ea555bd9e2bcb59ed4ca5ef987e'
13          'c1fe2cdbce51b61a02d7d91622200902')
15 build() {
16   
17   install -D "${srcdir}/licenses.txt" "${pkgdir}/usr/share/licences/${pkgname}/licenses.txt" || return 1
19   cd "${srcdir}/plugins/plugins/dulcimator2"
20   make config=release || return 1
21   install -Dm644 bin/release/dulcimator2.so "${pkgdir}/usr/lib/rhsp/dulcimator2.so" || return 1
23   cd "${srcdir}/plugins/plugins/opo"
24   make config=release || return 1
25   install -Dm644 bin/release/opo.so "${pkgdir}/usr/lib/rhsp/opo.so" || return 1
26   
27   cd "${srcdir}/plugins/plugins/piper2"
28   make config=release || return 1
29   install -Dm644 bin/release/piper2.so "${pkgdir}/usr/lib/rhsp/piper2.so" || return 1
31   cd "${srcdir}/plugins/plugins/vanilla_surprise"
32   make config=release || return 1
33   install -Dm644 bin/release/vanilla.so "${pkgdir}/usr/lib/rhsp/vanilla.so" || return 1
35   cd "${srcdir}/plugins/plugins/perpetua"
36   make config=release || return 1
37   install -Dm644 bin/release/perpetua.so "${pkgdir}/usr/lib/rhsp/perpetua.so" || return 1
41 # vim:set ts=2 sw=2 et: