updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / lutris-bzr / PKGBUILD
blobba1d54bcf5be016c1f13bc344a59e3105c664f7b
1 # Maintainer: FoolEcho <foolecho@gmail.com>
2 pkgname=lutris-bzr
3 pkgver=107
4 pkgrel=1
5 pkgdesc="Lutris is a gaming platform aiming to support as many games as possible for the GNU/Linux operating system."
6 arch=('any')
7 url="http://lutris.net/"
8 license=('GPL3')
9 #wxpython or wxglade ?
10 depends=('python2-gconf' 'wxpython' 'pyxdg' 'python2-yaml' 'python-imaging')
11 optdepends=(
12   'joy2key: for programs that otherwise lack native joystick support'
13   'pyglet: for fullscreen coverflow'
15 makedepends=('bzr' 'python-distutils-extra')
16 install=lutris.install
18 _bzrtrunk=lp:lutris
19 _bzrmod=lutris
21 build() {
22   cd ${srcdir}
24   msg "Connecting to the server...."
26   if [ ! -d ./${_bzrmod} ]; then
27     bzr co ${_bzrtrunk} ${_bzrmod}
28   else
29     bzr up ${_bzrmod}
30   fi
32   msg "Bazaar checkout done or server timeout"
33   msg "Starting build..."
35   rm -rf "$srcdir/$_bzrmod-build"
36   cp -r "$srcdir/$_bzrmod" "$srcdir/$_bzrmod-build"
38   # patch: use python2
39   find ${srcdir}/${_bzrmod}-build -name "*py" -exec sed 's/python/python2/' -i {} \;
42 package() {
43   cd "$srcdir/$_bzrmod-build"
44   python2 setup.py install --root="$pkgdir/" --optimize=1