updated on Fri Jan 20 12:03:34 UTC 2012
[aur-mirror.git] / avc / PKGBUILD
bloba6c96e2c832631897fcd71ef11b34a2e72bdbcdd
1 # Contributor: Adrian Carpenter <adriatic.c@gmail.com>
2 pkgname=avc
3 pkgver=0.8.3
4 pkgrel=1
5 pkgdesc="Application View Controller is a multiplatform, fully automatic, live connection among graphical interface widgets and application variables for python2."
6 arch=('i686' 'x86_64' 'ppc')
7 url="http://avc.inrim.it/"
8 license=('GPL')
9 depends=('python2')
10 optdepends=('pygtk: building gtk applications'
11             'python2-qt: building qt applications'
12             'wxpython: building wxWidgets applications'
13             'jython: building java swing applications with jython')
14 source=(http://avc.inrim.it/dist/$pkgname-$pkgver.tar.gz)
15 md5sums=('934b3aae64c6eb8c1dc6e2cc702ecd87')
17 build() {
18   cd "$srcdir/$pkgname-$pkgver"
20   python2 setup.py install --root=$startdir/pkg/
21   if which jython; then
22     msg "Found jython. Building modules..." 
23     jython setup.py install --root=$startdir/pkg/
24   else
25     msg "Could not find jython. Install jython before building this package to build avc jython modules."
26   fi
29 # vim:set ts=2 sw=2 et: