updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / rabbitvcs / PKGBUILD
blob5600ab484b6df4ef6373833f1a6d8df15036110d
1 # Maintainer: Thomas Oster <thomas.oster@rwth-aachen.de>
3 pkgname=rabbitvcs
4 pkgver=0.15.0.5
5 pkgrel=1
6 pkgdesc="A project with the goal of developing a collection of utilities to allow for better client integration with some of the popular version control systems (core)"
7 arch=('i686' 'x86_64')
8 url="http://rabbitvcs.org/"
9 install=${pkgname}.install
10 depends=('pygtk>=2.12' 'pygobject>=2.14' 'python-configobj>=4.4.0' 'pysvn-py2>=1.5.2' 'subversion>=1.4.6' 'git' 'python-dulwich>=0.6.0' 'meld' 'python-simplejson')
11 #makedepends=()
12 #backup=()
13 license=('GPL')
14 source=(http://rabbitvcs.googlecode.com/files/$pkgname-$pkgver.tar.bz2)
15 md5sums=('9bf0548557cc803ad2d88f747da1af8a')
17 build(){
18         cd "$srcdir/$pkgname-$pkgver"
19         
20         sed -i "s#env python#env python2#" setup.py
21         find . -name "*.py" | xargs grep -l sys.executable | xargs sed -i 's|sys\.executable|"/usr/bin/python2"|g'
22         
23         python2 setup.py install --root="$pkgdir" --optimize=1