diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/flowcanvas |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/flowcanvas')
-rw-r--r-- | community/flowcanvas/PKGBUILD | 32 | ||||
-rw-r--r-- | community/flowcanvas/flowcanvas.install | 11 |
2 files changed, 43 insertions, 0 deletions
diff --git a/community/flowcanvas/PKGBUILD b/community/flowcanvas/PKGBUILD new file mode 100644 index 000000000..bb1b0808c --- /dev/null +++ b/community/flowcanvas/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 37633 2011-01-15 21:43:11Z schiv $ +# Maintainer: Ray Rashif <schiv@archlinux.org> +# Contributor: Max a.k.a. Synthead <synthead@gmail.com> +# Contributor: christhemonkey <christhemonkey at gmail dot com> + +pkgname=flowcanvas +pkgver=0.7.1 +pkgrel=1 +pkgdesc="Gtkmm/Gnomecanvasmm widget for boxes-and-lines style environments" +arch=(i686 x86_64) +url="http://drobilla.net/software/flowcanvas/" +depends=('libgnomecanvasmm' 'graphviz') +makedepends=('boost' 'python2') +license=('GPL') +install=$pkgname.install +source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2) +md5sums=('a4908f6385ce9fd2ce97c8caa823f053') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf configure --prefix=/usr + python2 waf build $MAKEFLAGS +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf install --destdir="$pkgdir" +} + +# vim:set ts=2 sw=2 et: diff --git a/community/flowcanvas/flowcanvas.install b/community/flowcanvas/flowcanvas.install new file mode 100644 index 000000000..46f265d5b --- /dev/null +++ b/community/flowcanvas/flowcanvas.install @@ -0,0 +1,11 @@ +post_install() { + /sbin/ldconfig +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |