updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / gclient-svn / PKGBUILD
blob45547484d99845e4e616bcfee64f86399512e90d
1 # Maintainer:  Gergely Imreh <imrehgATgmailDOTcom>
2 # Contributor:  Gergely Imreh <imrehgATgmailDOTcom>
3 pkgname=gclient-svn
4 pkgver=72
5 pkgrel=2
6 pkgdesc="Script to manage checkouts and updates for a set of client modules in various SCM repository locations."
7 url="http://code.google.com/p/gclient/"
8 arch=('i686' 'x86_64')
9 license=('APACHE')
10 makedepends=('subversion' 'autoconf')
11 depends=('python2' 'python-pymox')
12 provides=('gclient')
13 _svntrunk=http://gclient.googlecode.com/svn/trunk/gclient
14 _svnmod=gclient
16 build() {
17   cd ${srcdir}
19   if [ -d $_svnmod/.svn ]; then
20     (cd $_svnmod && svn up -r $pkgver)
21   else
22     svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
23   fi
25   msg "SVN checkout done or server timeout"
26   msg "Starting install..."
28   install -D -m755 "${_svnmod}/gclient.py" "${pkgdir}/usr/bin/gclient.py" || return 1
29   ln -s gclient.py ${pkgdir}/usr/bin/gclient || return 1