blob: 06acaa2046ba3018b7c24939e0e4da5f72908e63 (
plain)
1 # Description: GeoIP Legacy C Library
2 # URL: https://github.com/maxmind/geoip-api-c
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4
5 name=libgeoip
6 version=1.6.11
7 release=1
8 source=(https://github.com/maxmind/geoip-api-c/archive/v${version}.tar.gz)
9
10 build() {
11 cd geoip-api-c-$version
12
13 autoreconf -i
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|