summaryrefslogtreecommitdiff
path: root/extra/python-geoip/PKGBUILD
blob: dc15efab0a9b72c57df5e052c476e5e4cb8a12f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# $Id: PKGBUILD 195467 2013-09-30 13:27:17Z jgc $
# Maintainer:
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>

pkgname=('python2-geoip')
pkgbase=python-geoip
pkgver=1.2.8
pkgrel=2
pkgdesc="Python bindings for the GeoIP IP-to-country resolver library"
arch=('i686' 'x86_64')
url="http://dev.maxmind.com/geoip/legacy/downloadable#Python-10"
license=('LGPL')
depends=('python2' 'geoip')
source=(http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-$pkgver.tar.gz)
sha256sums=('8b946307355b60cb0f2b0be8ac90c1231286e0e79917509763267fce01a50e73')

build() {
  cd "GeoIP-Python-$pkgver"
  python2 setup.py build
}

package_python2-geoip() {
  cd "GeoIP-Python-$pkgver"
  python2 setup.py install --root="$pkgdir" -O1
}

# vim:set ts=2 sw=2 et: