summaryrefslogtreecommitdiff
path: root/libre/django-countries
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-12-13 14:12:26 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-12-13 14:12:26 -0500
commit3de4a02fd7512d3089c0c7228838446278aff531 (patch)
tree27ddab393f9a2085a00ad7f7c437061ac7de522d /libre/django-countries
parent54f9a793badf6063d8bfa7d261727d08f3de034a (diff)
add libre/django-countries, a new dep of parabolaweb
Diffstat (limited to 'libre/django-countries')
-rw-r--r--libre/django-countries/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/libre/django-countries/PKGBUILD b/libre/django-countries/PKGBUILD
new file mode 100644
index 000000000..24b667a67
--- /dev/null
+++ b/libre/django-countries/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
+
+pkgname=django-countries
+pkgver=1.5
+pkgdesc="Provides a country field for Django models"
+license=('custom:MIT')
+url="http://bitbucket.org/smileychris/django-countries/"
+
+pkgrel=1
+arch=(any)
+depends=('django')
+makedepends=('python2-distribute')
+source=(http://pypi.python.org/packages/source/${pkgname:0:1}/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=(6c65fcc3aa7de065a54cdb619397626d)
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ sed -i 's|#!/usr/bin/env python\s*$|#!/usr/bin/env python2|' setup.py */bin/*.py
+ # fix python->python2, and a typo!
+ sed -i 's|python regen[a-z]*\.py|python2 regenerage.py|' */bin/regenerate.py
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./setup.py install --root="$pkgdir/" --optimize=1
+}