diff options
Diffstat (limited to 'main/geoip')
-rw-r--r-- | main/geoip/APKBUILD | 15 | ||||
-rwxr-xr-x | main/geoip/geoip.cron | 2 |
2 files changed, 11 insertions, 6 deletions
diff --git a/main/geoip/APKBUILD b/main/geoip/APKBUILD index 309b3e5e76..047579749d 100644 --- a/main/geoip/APKBUILD +++ b/main/geoip/APKBUILD @@ -3,7 +3,7 @@ pkgname="geoip" _realname="GeoIP" pkgver=1.6.7 -pkgrel=0 +pkgrel=1 pkgdesc="Lookup countries by IP addresses" url="http://www.maxmind.com/app/ip-location" arch="all" @@ -12,7 +12,8 @@ depends= makedepends="zlib-dev" install= subpackages="$pkgname-dev $pkgname-doc" -source="https://github.com/maxmind/geoip-api-c/releases/download/v$pkgver/$_realname-$pkgver.tar.gz" +source="https://github.com/maxmind/geoip-api-c/releases/download/v$pkgver/$_realname-$pkgver.tar.gz + geoip.cron" _builddir="$srcdir"/$_realname-$pkgver @@ -39,9 +40,13 @@ build() { package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 + mkdir -p "$pkgdir"/usr/share/GeoIP install -m755 -D ../../geoip.cron "$pkgdir"/etc/periodic/monthly/geoip } -md5sums="4c8e1923fdf6257013178de7f025527f GeoIP-1.6.7.tar.gz" -sha256sums="18f3713146b6196f85b57a92bcfdc9aea3345e2d836531a6ac4a630ffc7fa559 GeoIP-1.6.7.tar.gz" -sha512sums="f22a70255f7659a513653580fd17b50e60169eb56f0a4b071f85e48d888b3699524df37e75b2f0fa78f6bc5ca52996b45f7be532bcfce3e041bcde1bd8d1b9a3 GeoIP-1.6.7.tar.gz" +md5sums="4c8e1923fdf6257013178de7f025527f GeoIP-1.6.7.tar.gz +674837e5011389610f1569bbb1a00f76 geoip.cron" +sha256sums="18f3713146b6196f85b57a92bcfdc9aea3345e2d836531a6ac4a630ffc7fa559 GeoIP-1.6.7.tar.gz +17e50491df05e50cd9f3186a878567f7eb9492773c90b99f4a8d7bb61386d5e2 geoip.cron" +sha512sums="f22a70255f7659a513653580fd17b50e60169eb56f0a4b071f85e48d888b3699524df37e75b2f0fa78f6bc5ca52996b45f7be532bcfce3e041bcde1bd8d1b9a3 GeoIP-1.6.7.tar.gz +5fc4003b57f5a0514c42764a6c6d28c2db926ea244f125accf490648adc9d172215e0d16426f49d79e1c465fea2c71b591636f1038d683c77535d2d93811a73e geoip.cron" diff --git a/main/geoip/geoip.cron b/main/geoip/geoip.cron index b7c2ffd4d0..fc96d08a82 100755 --- a/main/geoip/geoip.cron +++ b/main/geoip/geoip.cron @@ -1,2 +1,2 @@ #!/bin/sh -wget -q http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O /tmp/GeoIP.dat.gz && gunzip tmp/GeoIP.dat.gz && mv tmp/GeoIP.dat.gz /usr/share/GeoIP +wget -q http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O /tmp/GeoIP.dat.gz && gunzip /tmp/GeoIP.dat.gz && mv /tmp/GeoIP.dat /usr/share/GeoIP |