blob: d2868787c30689435a0b04e5085e004497ad751c (
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.12
7 release=1
8 source=(https://github.com/maxmind/geoip-api-c/archive/v$version/$name-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 }
|