description="GeoLite country geolocation database compiled by MaxMind"
url="http://www.maxmind.com/app/c"
packager="spiky <spiky@nutyx.org>"

name=geoip-database
version=20221227

PKGMK_KEEP_SOURCES="no"

_source_base=https://sources.archlinux.org/other/packages/$name/$version

source=(${_source_base}/GeoIP.dat.gz
        ${_source_base}/GeoIPv6.dat.gz)

build() {
	umask 022
	install -d $PKG/usr/share/GeoIP
	for i in GeoIP.dat GeoIPv6.dat; do
		gzip -dc $i.gz > $PKG/usr/share/GeoIP/$i
	done
}
