]> git.pld-linux.org Git - packages/xtables-geoip.git/blob - xtables-geoip.spec
- release 3 (by relup.sh)
[packages/xtables-geoip.git] / xtables-geoip.spec
1 Summary:        GeoIP database files for xt_geoip
2 Summary(pl.UTF-8):      Pliki baz danych GeoIP dla xt_geoip
3 Name:           xtables-geoip
4 Version:        20181030
5 Release:        3
6 License:        GPL, Open Data License
7 Group:          Networking/Admin
8 Source0:        https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country-CSV.zip
9 # Source0-md5:  8527b411dfd72d39ff0556c703ca7f80
10 Source1:        https://geolite.maxmind.com/download/geoip/database/LICENSE.txt
11 # Source1-md5:  a1381bd1aa0a0c91dc31b3f1e847cf4a
12 Source2:        https://sourceforge.net/p/xtables-addons/xtables-addons/ci/master/tree/geoip/xt_geoip_build?format=raw&/xt_geoip_build
13 # Source2-md5:  462ca00be38471d19dc6e0f32c098275
14 URL:            https://www.maxmind.com/
15 BuildRequires:  perl-Text-CSV_XS >= 0.69
16 BuildRequires:  perl-base
17 BuildRequires:  rpm >= 4.4.9-56
18 BuildRequires:  unzip
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %define         dbdir   /usr/share/xt_geoip
22
23 # no debuginfo to package
24 %define         _enable_debug_packages  0
25
26 %description
27 The package contains the GeoIP definition files (which IP addresses
28 belong to which country) that are needed for Xtables-addons's xt_geoip
29 module.
30
31 %description -l pl.UTF-8
32 Ten pakiet zawiera pliki definicji GeoIP (określające, które adresy IP
33 należą do jakiego kraju), wymagane przez moduł xt_geoip z pakietu
34 xtables-addons.
35
36 %prep
37 %setup -qc
38
39 ver=$(echo GeoLite2-Country-CSV_*)
40 ver=${ver#GeoLite2-Country-CSV_}
41 if [ "$ver" != %{version} ]; then
42         exit 1
43 fi
44
45 cp -p %{SOURCE1} .
46
47 %build
48 %{__mkdir} out
49 %{__perl} %{SOURCE2} -S GeoLite2-Country-CSV_%{version} -D out > ranges.txt
50
51 %install
52 rm -rf $RPM_BUILD_ROOT
53 install -d $RPM_BUILD_ROOT%{dbdir}
54 cp -a out/* $RPM_BUILD_ROOT%{dbdir}
55
56 %clean
57 rm -rf $RPM_BUILD_ROOT
58
59 %files
60 %defattr(644,root,root,755)
61 %doc LICENSE.txt ranges.txt
62 %{dbdir}
This page took 0.130052 seconds and 3 git commands to generate.