updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / pygtkchart-git / PKGBUILD
blob38f53babca4b605aa4616a431b2326aa500e2cc7
1 pkgname=pygtkchart-git
2 pkgver=20100523
3 pkgrel=1
4 pkgdesc="Bar charts, pie charts, and line graph widgets for pygtk"
5 url=http://notmyname.github.com/pygtkChart
6 license=GPL
7 depends=('pygtk')
8 makedepends=('git')
9 provides=('pygtkchart')
10 arch=(i686 x86_64)
12 source=()
13 md5sums=()
14 noextract=()
16 _gitroot="git://github.com/notmyname/pygtkChart"
17 _gitname="pygtkchart"
19 build() {
20   cd "$srcdir"
21   msg "Connecting to GIT server...."
23   if [ -d $_gitname ] ; then
24     cd $_gitname && git pull origin
25     msg "The local files are updated."
26   else
27     git clone $_gitroot $_gitname
28   fi
30   msg "GIT checkout done or server timeout"
31   msg "Starting make..."
32   
33   cd $_gitname
34   python setup.py build
35   python setup.py install --prefix=/usr --root=$startdir/pkg