forked from ports/contrib
21 lines
611 B
Plaintext
21 lines
611 B
Plaintext
# Description: GeoIP database files for xt_geoip in xtables-addons.
|
|
# URL: http://maxmind.com/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Depends on: p5-text-csv-xs xtables-addons
|
|
|
|
name=xtables-geoip
|
|
version=20111201
|
|
release=1
|
|
source=(http://www.hvlinux.net/crux/distfiles/$name/GeoIPCountryCSV.zip
|
|
http://www.hvlinux.net/crux/distfiles/$name/GeoIPv6.csv.gz)
|
|
|
|
build() {
|
|
gunzip $SRC/GeoIPv6.csv.gz
|
|
|
|
install -d $PKG/usr/share/xt_geoip
|
|
|
|
/usr/lib/xtables-addons/xt_geoip_build \
|
|
-D $PKG/usr/share/xt_geoip/ $SRC/*.csv
|
|
}
|