1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/Python_Package_Guidelines for more
7 # information on Python packaging.
9 # Maintainer: Your Name <youremail@domain.com>
10 pkgname=python2-geohash
13 pkgdesc="a fast, accurate python geohashing library"
15 url="http://code.google.com/p/python-geohash/"
19 source=("http://python-geohash.googlecode.com/files/python-geohash-$pkgver.tar.gz")
20 md5sums=('cf71cd666115ba3b6e62c9faba53e1c4')
22 cd "$srcdir/python-geohash-$pkgver"
23 python2 setup.py install --root=$pkgdir/ --optimize=1
26 # vim:set ts=2 sw=2 et: