diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-04-22 12:00:48 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-04-22 12:00:48 -0300 |
commit | 3f7388773330e2afd298244fccf2a209d26aec33 (patch) | |
tree | b9c510d11733815414b6f2506965fc7e89fca5a0 /libre/python2-django-countries | |
parent | 240aa9c7afbe2d2dc95c2d4c76b83376773d2a08 (diff) | |
parent | 908d987dd1dcd4899f8f7f0878514c22ca8048b7 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/python2-django-countries')
-rw-r--r-- | libre/python2-django-countries/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libre/python2-django-countries/PKGBUILD b/libre/python2-django-countries/PKGBUILD new file mode 100644 index 000000000..a7bd85da1 --- /dev/null +++ b/libre/python2-django-countries/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +_pkgname=django-countries +pkgname=python2-$_pkgname +pkgver=1.5 +pkgdesc="Provides a country field for Django models" +url="http://bitbucket.org/smileychris/$_pkgname/" +license=('custom:MIT') + +replaces=($_pkgname) +conflicts=($_pkgname) + +pkgrel=2 +arch=(any) +depends=('python2-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 help message: (python2, typo) + # "python regenenerate.py" -> "python2 regenerate.py" + sed -i 's|python regen[a-z]*\.py|python2 regenerate.py|' */bin/regenerate.py +} + +package() { + cd "$srcdir/$_pkgname-$pkgver" + ./setup.py install --root="$pkgdir/" --optimize=1 +} |