]> git.pld-linux.org Git - packages/GeoIP-db-Country.git/blob - GeoIP-db-Country.spec
5f6a8ad1be512c0c3fc54a2c56868e2b8ac485bb
[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:        2016.05.03
6 Release:        2
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:  b2be0bf3152fff8e64f3012bd4a3d924
11 Source1:        http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz?/GeoIPv6-%{version}.dat.gz
12 # Source1-md5:  99c46748c54cc18d98379f9f969f62c9
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.068144 seconds and 2 git commands to generate.