summaryrefslogtreecommitdiff
path: root/pcr/python-django-extensions/PKGBUILD
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-01 11:27:07 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-05-01 11:27:07 -0500
commit4c37b5e0245f85631de17e7541fab5e6d070095f (patch)
tree149ac1ea14fcf936f69a80f722f37741a00ac065 /pcr/python-django-extensions/PKGBUILD
parent0c9b3812ed66737f590eebcfcfe4377d94e6dcd4 (diff)
python-django-extensions-1.5.2-1: updating version
Diffstat (limited to 'pcr/python-django-extensions/PKGBUILD')
-rw-r--r--pcr/python-django-extensions/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/pcr/python-django-extensions/PKGBUILD b/pcr/python-django-extensions/PKGBUILD
new file mode 100644
index 000000000..9abf30fda
--- /dev/null
+++ b/pcr/python-django-extensions/PKGBUILD
@@ -0,0 +1,31 @@
+# Contributor (Arch): Jeremy "Ichimonji10" Audet <ichimonji10 at gmail dot com>
+# Maintainer : Omar Vega Ramos <ovruni@gnu.org.pe>
+#
+# namcap warns that python-django and python-six are unnecessary dependencies.
+# This is untrue.
+
+pkgname=python-django-extensions
+_pkgname=django-extensions
+pkgver=1.5.2
+pkgrel=1
+pkgdesc='A collection of custom extensions for the Django Framework.'
+arch=(any)
+url='http://github.com/django-extensions/django-extensions'
+license=(MIT)
+depends=(python-django python-six)
+makedepends=(python-setuptools)
+optdepends=(
+ 'graphviz: to graph Django models'
+ 'python-werkzeug: to use the Werkzeug debugger in the embedded web server'
+)
+options=(!emptydirs)
+source=("https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz")
+sha256sums=('dd719ca75fe69803a55f7cd7e0f0c6563eb4e0bf68acfc352ffb58fe708722de')
+
+package() {
+ cd "${srcdir}/${_pkgname}-${pkgver}"
+ python setup.py install --root="${pkgdir}/" --optimize=1
+ install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et: