diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-12-14 15:17:05 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-12-14 15:17:05 -0200 |
commit | 7e70a6b31620d6d8cee25f83740af3e37a5efd94 (patch) | |
tree | 75eedebc296a802a2d1cc63669c93c2fea02cb91 /libre/django-countries/PKGBUILD | |
parent | 549da93280e61dbd33da7c4328866ff7f937dc96 (diff) | |
parent | 9fb2ded7e238dd889baac2d24d60095ff85edc18 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/django-countries/PKGBUILD')
-rw-r--r-- | libre/django-countries/PKGBUILD | 26 |
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 +} |