diff options
Diffstat (limited to 'meta-networking/recipes-support/geoip/geoipupdate_2.2.1.bb')
-rw-r--r-- | meta-networking/recipes-support/geoip/geoipupdate_2.2.1.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/geoip/geoipupdate_2.2.1.bb b/meta-networking/recipes-support/geoip/geoipupdate_2.2.1.bb new file mode 100644 index 0000000000..7a3a002524 --- /dev/null +++ b/meta-networking/recipes-support/geoip/geoipupdate_2.2.1.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SUMMARY = "Crontab entry to provide weekly updates of the GeoIP free databases." | ||
2 | DESCRIPTION = "update databases for GeoIP" | ||
3 | |||
4 | HOMEPAGE = "http://dev.maxmind.com/geoip/" | ||
5 | SECTION = "net" | ||
6 | |||
7 | DEPENDS = "zlib curl" | ||
8 | |||
9 | SRC_URI = "https://github.com/maxmind/geoipupdate/releases/download/v2.2.1/geoipupdate-2.2.1.tar.gz \ | ||
10 | file://GeoIP.conf \ | ||
11 | file://geoipupdate.cron \ | ||
12 | " | ||
13 | |||
14 | SRC_URI[md5sum] = "abfd4bb9dd7fd489c103888dde5f2a57" | ||
15 | SRC_URI[sha256sum] = "9547c42cc8620b2c3040fd8df95e8ee45c8b6ebcca7737d641f9526104d5f446" | ||
16 | |||
17 | LICENSE = "GPLv2" | ||
18 | |||
19 | LIC_FILES_CHKSUM = "\ | ||
20 | file://ChangeLog.md;md5=5ca3d911ed549b0756b03410ff77fa62 \ | ||
21 | " | ||
22 | |||
23 | inherit autotools | ||
24 | |||
25 | do_install_append() { | ||
26 | install -d ${D}/${sysconfdir} | ||
27 | install -d ${D}/${sysconfdir}/cron.d | ||
28 | install ${WORKDIR}/GeoIP.conf ${D}/${sysconfdir}/ | ||
29 | install ${WORKDIR}/geoipupdate.cron ${D}/${sysconfdir}/cron.d/ | ||
30 | } | ||