]> git.pld-linux.org Git - packages/GeoIP-db-Country.git/blob - GeoIP-db-Country.spec
updated to 2018.10.31
[packages/GeoIP-db-Country.git] / GeoIP-db-Country.spec
1 Summary:        GeoLite Country - Country database for GeoIP
2 Summary(pl.UTF-8):      GeoLite Country - baza danych krajów dla GeoIP
3 Name:           GeoIP-db-Country
4 # Updated every month:
5 Version:        2018.03.07
6 Release:        1
7 License:        CC 3.0 BY-SA
8 Group:          Applications/Databases
9 Source0:        http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz?/GeoIP-%{version}.dat.gz
10 # Source0-md5:  5b3d3299e0644f51cafd624e6b3a7ce8
11 Source1:        http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz?/GeoIPv6-%{version}.dat.gz
12 # Source1-md5:  aea888a68931985cb10a9dabf0a1bc9b
13 URL:            http://dev.maxmind.com/geoip/legacy/geolite/
14 Requires:       GeoIP-libs >= 1.4.5-2
15 BuildArch:      noarch
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 GeoLite Country is similar to the GeoIP Country database, but is not
20 as accurate. Should you require greater accuracy, GeoIP Country is a
21 drop-in replacement for GeoLite Country.
22
23 License disclaimer: this product includes GeoLite data created by
24 MaxMind, available from <http://www.maxmind.com/>.
25
26 %description -l pl.UTF-8
27 GeoLite Country jest podobna do bazy danych GeoIP Country, ale nie
28 jest tak dokładna. Jeśli wymagana jest większa dokładność, GeoIP
29 Country jest zamiennikiem GeoLite Country.
30
31 Informacja licencyjna: ten produkt zawiera dane GeoLite stworzone
32 przez MaxMind, dostępne z <http://www.maxmind.com/>.
33
34 %prep
35 %setup -qcT
36 cp -p %{SOURCE0} .
37 cp -p %{SOURCE1} .
38
39 gzip -d GeoIP-%{version}.dat.gz GeoIPv6-%{version}.dat.gz
40 dt4=$(TZ=GMT stat -c '%y' GeoIP-%{version}.dat | awk '{print $1}' | tr - .)
41 dt5=$(TZ=GMT stat -c '%y' GeoIP-%{version}.dat | awk '{print $1}' | tr - .)
42 if [ "$(echo $dt4 | tr -d .)" -gt "$(echo $dt6 | tr -d .)" ]; then
43         ver=$dt4
44 else
45         ver=$dt6
46 fi
47 if [ "$ver" != %{version} ]; then
48         exit 1
49 fi
50
51 %install
52 rm -rf $RPM_BUILD_ROOT
53 install -d $RPM_BUILD_ROOT%{_datadir}/GeoIP
54 cp -p GeoIP-%{version}.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP/GeoIP.dat
55 cp -p GeoIPv6-%{version}.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP/GeoIPv6.dat
56
57 %clean
58 rm -rf $RPM_BUILD_ROOT
59
60 %files
61 %defattr(644,root,root,755)
62 %{_datadir}/GeoIP/*.dat
This page took 0.085863 seconds and 3 git commands to generate.