updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / pygtkhelpers-hg / PKGBUILD
blob131aa475b5ed744488ef48e57965e130e479ebf1
1 # Contributor: Connor Behan <connor.behan@gmail.com>
3 pkgname=pygtkhelpers-hg
4 pkgver=318
5 pkgrel=1
6 pkgdesc="Helper library providing easy interaction with PyGTK"
7 arch=('i686' 'x86_64')
8 url="http://packages.python.org/pygtkhelpers"
9 license=('custom')
10 depends=('pygtk')
11 provides=('python2-pygtkhelpers-hg')
12 makedepends=('mercurial')
13 # Do you get 404 errors if you use the standard "_hgroot" and "_hgrepo"?
14 __hgroot=http://bitbucket.org/aafshar/pygtkhelpers-main
15 __hgrepo=pygtkhelpers
17 build() {
18   cd $srcdir
19   
20   msg "Connecting to $__hgroot"
21   if [ -d $__hgrepo ]; then
22     cd $__hgrepo
23     hg pull -u || return 1
24     msg2 "Finished updating the local repository!"
25   else
26     hg clone $__hgroot $__hgrepo || return 1
27     msg2 "Initial pull complete!"
28   fi
30   rm -rf ${srcdir}/${__hgrepo}-build
31   cp -a ${srcdir}/${__hgrepo} ${srcdir}/${__hgrepo}-build || return 1
32   cd ${srcdir}/${__hgrepo}-build
33   
34   python2 setup.py install --root=$startdir/pkg/ --prefix=/usr
36 md5sums=()