blob: bdbfc1443c4054d495c918c6fc0b47d3bebab3ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: Amish <contact at via dot aur>
pkgname=xtables-geoip-db
pkgver=2.2
pkgrel=13
pkgdesc="GeoIP Database for xtables"
arch=('any')
license=('BSD' 'GPL')
makedepends=('perl-text-csv-xs' 'perl-net-cidr-lite')
_geoip_date=`date +%Y-%m`
# if you want to use MaxMind DB instead of DB-IP then, get license key from
# https://www.maxmind.com/en/geolite2/signup
# create a file named geoip.license.key which contains MaxMind License key in following format:
# _maxmind_key=XXXX
[[ -f geoip.license.key ]] && source geoip.license.key
if [[ -z "${_maxmind_key}" ]]; then
url="https://db-ip.com/db/download/ip-to-country-lite"
source="dbip-country-lite-${_geoip_date}.csv.gz::https://download.db-ip.com/free/dbip-country-lite-${_geoip_date}.csv.gz"
_dbsource="DB-IP"
_dblink="https://db-ip.com"
else
url="https://dev.maxmind.com/geoip/geoip2/geolite2/"
source="GeoLite2-Country-CSV-${_geoip_date}.zip::https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-Country-CSV&suffix=zip&license_key=${_maxmind_key}"
_dbsource="MaxMind GeoLite2"
_dblink="https://www.maxmind.com"
fi
source+=('README'
'xt_geoip_build'
'mmcsv_geoip_build')
sha256sums=('SKIP'
'6d14567807b8ea8c57a0cae2507f4607420e936017252d71d98124e6913c84df'
'ff867e1e2769b61ba9dcc825b73de37a46fe446bb4e3eb528dd7f15e960ce76b'
'2ff950f3ed0e93722bf0477a4b0bd3fdd79d94b5631f073e80bc76f10d596cc3')
package() {
echo Using ${_dbsource} GeoIP database
install -d -m 755 "${pkgdir}"/usr/share/xt_geoip
if [[ -z "${_maxmind_key}" ]]; then
cd "${srcdir}"
perl "${srcdir}"/xt_geoip_build -D "${pkgdir}"/usr/share/xt_geoip -i "dbip-country-lite-${_geoip_date}.csv"
else
cd "${srcdir}"/GeoLite2-Country-CSV_*
perl "${srcdir}"/mmcsv_geoip_build -D "${pkgdir}"/usr/share/xt_geoip
fi
install -Dm644 -t "${pkgdir}/usr/share/doc/${pkgname}" "${srcdir}"/README
sed -i -e "s/@@@DBSOURCE@@@/${_dbsource}/g" -e "s#@@@DBLINK@@@#${_dblink}#g" "${pkgdir}/usr/share/doc/${pkgname}/README"
}
|