updated on Mon Jan 23 00:00:36 UTC 2012
[aur-mirror.git] / pilas-hg / PKGBUILD
blobcbe71886ebc21bed0869b36a58cfb2bfe718cd36
1 # Maintainer: Diego Mascialino <diego@gcoop.coop>
3 pkgname=pilas-hg
4 pkgver=20110211
5 pkgrel=1
6 pkgdesc="Un motor para hacer videojuegos de manera sencilla en Python. An engine to make games in an easy way with Python."
7 arch=('any')
8 depends=('python2' 'python2-pysfml' 'setuptools' 'pybox2d-svn')
9 makedepends=('mercurial')
10 license=('LGPL')
11 url="http://www.pilas-engine.com.ar"
13 build() {
14     cd ${srcdir}
15     if [ -d pilas/.hg ]; then
16         (cd pilas && hg pull -u)
17     else
18         hg clone https://bitbucket.org/hugoruscitti/pilas
19     fi
21     cd pilas
22     python2 setup.py build
23     python2 setup.py install --root=$startdir/pkg
26 md5sums=()