1 # Maintainer: Alper Kanat <alperkanat@raptiye.org>
2 # Contributor: Schnouki <thomas.jost@gmail.com>
4 pkgname=django-extensions
7 pkgdesc="Django Custom Management Command Extensions"
9 url="http://github.com/django-extensions/django-extensions"
11 depends=('django' 'python2')
12 makedepends=('setuptools' 'git')
13 optdepends=('graphviz: to graph Django models'
14 'python-werkzeug: to use the Werbzeug debugger in the embedded web server')
18 _giturl=http://github.com/$pkgname/$pkgname.git
23 if [[ ! -d $srcdir/$pkgname ]]; then
24 # downloading the whole repository
27 # updating the local repository
34 # checking out to the tag (version)
35 git checkout -b $pkgver $pkgver
37 python2 ./setup.py install --root=$pkgdir --prefix=/usr || return 1