updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / python2-geohash / PKGBUILD
blob55542b2d014717b4281875db791b939aeac312e5
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
11 pkgver=0.7.1
12 pkgrel=1
13 pkgdesc="a fast, accurate python geohashing library"
14 arch=('any')
15 url="http://code.google.com/p/python-geohash/"
16 license=('Apache')
17 depends=('python2')
18 options=(!emptydirs)
19 source=("http://python-geohash.googlecode.com/files/python-geohash-$pkgver.tar.gz")
20 md5sums=('cf71cd666115ba3b6e62c9faba53e1c4')
21 package() {
22   cd "$srcdir/python-geohash-$pkgver"
23   python2 setup.py install --root=$pkgdir/ --optimize=1
26 # vim:set ts=2 sw=2 et: