updated on Sat Jan 21 04:00:54 UTC 2012
[aur-mirror.git] / libpicviz / PKGBUILD
blob0aaf18ddfe7df728585677c8be01e693a13e6c56
1 # Maintainer: Antoine Lubineau <antoine@lubignon.info>
3 pkgname=libpicviz
4 pkgver=0.6.1
5 pkgrel=1
6 pkgdesc="A parallel coordinates plotter which enables easy scripting from various input (Python library)"
7 arch=('i686' 'x86_64')
8 url="http://www.wallinfire.net/picviz/"
9 license=('GPL')
10 depends=('python2')
11 makedepends=('libevent' 'pcre' 'cmake')
12 source=("http://www.wallinfire.net/files/picviz/$pkgname-$pkgver.tar.gz")
13 md5sums=('6a3df34dba69e244a483017050d8c964')
14 sha1sums=('e3a899e7beb39c87233d0853ac39ed77d3f8774c')
15 sha256sums=('e7395c7ac2537e3edcc704bd6008f498ae6cc73bdc4b0e97a04075dac11e6a65')
16 sha384sums=('fab88c4de7a3e4a17cf424de933c4ae571c97ae2c96d6609d231d41c138c0c23946762d22636d8b26b1bc4b809320046')
17 sha512sums=('0e281473be6f8670ce2d58577ae2b14df9a75678e17c3993392dc215997a7bcb908ac9eed6de28961d8e5156745369ae350e572ccc2184f822991a40645d7651')
19 build() {
20   cd "$srcdir/$pkgname-$pkgver"
22   cmake -DCMAKE_INSTALL_PREFIX=/usr
23   make || return 1
26 package() {
27   cd "$srcdir/$pkgname-$pkgver"
29   make DESTDIR="$pkgdir/" install
31   cd src/bindings/python
32   python setup.py install --root=$pkgdir/ --optimize=1
35 # vim:set ts=2 sw=2 et: