21 lines
457 B
Plaintext
21 lines
457 B
Plaintext
# Tanım: cografi ip çözücü veritabanı
|
||
# URL: http://www.maxmind.com/app/c
|
||
# Paketçi: milisarge
|
||
# Gerekler:
|
||
|
||
isim=geoip-database
|
||
surum=20170601
|
||
devir=1
|
||
kaynak=(
|
||
http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
|
||
http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz
|
||
)
|
||
|
||
derle() {
|
||
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
|
||
}
|