diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/patchage | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/patchage')
-rw-r--r-- | community/patchage/PKGBUILD | 32 | ||||
-rw-r--r-- | community/patchage/patchage.install | 13 |
2 files changed, 45 insertions, 0 deletions
diff --git a/community/patchage/PKGBUILD b/community/patchage/PKGBUILD new file mode 100644 index 000000000..0a9e2b4c3 --- /dev/null +++ b/community/patchage/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 63694 2012-02-05 12:07:28Z ibiru $ +# Maintainer: Ray Rashif <schiv@archlinux.org> +# Contributor: Max Pray a.k.a. Synthead <synthead@gmail.com> +# Contributor: clarence <catchfire at gmail dot com> +pkgname=patchage +pkgver=0.5.0 +pkgrel=3 +pkgdesc="A modular patch bay for audio and MIDI systems" +arch=('i686' 'x86_64') +url="http://drobilla.net/software/patchage" +license=('GPL') +depends=('dbus-glib' 'libglademm' 'hicolor-icon-theme' + 'raul' 'flowcanvas<1.0.0' 'jack') +makedepends=('boost' 'python2') +install=$pkgname.install +source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2") +sha256sums=('9bb9d1ba0205c0ad95c6dbecba56c513ff706f1057348d33ff7567bc9cbd89d2') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf configure --prefix=/usr + python2 waf build $MAKEFLAGS +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf --destdir="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: diff --git a/community/patchage/patchage.install b/community/patchage/patchage.install new file mode 100644 index 000000000..e4f8fd06c --- /dev/null +++ b/community/patchage/patchage.install @@ -0,0 +1,13 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: |