diff options
Diffstat (limited to 'pcr/django-extensions/PKGBUILD')
-rw-r--r-- | pcr/django-extensions/PKGBUILD | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/pcr/django-extensions/PKGBUILD b/pcr/django-extensions/PKGBUILD deleted file mode 100644 index 535091cfc..000000000 --- a/pcr/django-extensions/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Contributor: Alper Kanat <alperkanat@raptiye.org> -# Contributor: Schnouki <thomas.jost@gmail.com> -# Maintainer : Parabola GNU / Linux-libre <aurelien@cwb.io> - -pkgname=django-extensions -pkgver=0.6 -pkgrel=1 -pkgdesc="Django Custom Management Command Extensions" -arch=('any') -url="http://github.com/django-extensions/django-extensions" -license=('BSD') -depends=('django' 'python2') -makedepends=('setuptools' 'git') -optdepends=('graphviz: to graph Django models' - 'python-werkzeug: to use the Werbzeug debugger in the embedded web server') -source=() - -_giturl=http://github.com/$pkgname/$pkgname.git - -build() { - cd $srcdir - - if [[ ! -d $srcdir/$pkgname ]]; then - # downloading the whole repository - git clone $_giturl - else - # updating the local repository - cd $srcdir/$pkgname - git pull - fi - - cd $srcdir/$pkgname - - # checking out to the tag (version) - git checkout -b $pkgver $pkgver - - python2 ./setup.py install --root=$pkgdir --prefix=/usr || return 1 -} - |