]> git.pld-linux.org Git - packages/GeoIP-db-Country.git/blame - GeoIP-db-Country.spec
- initial
[packages/GeoIP-db-Country.git] / GeoIP-db-Country.spec
CommitLineData
2b240ee7
PG
1Summary: GeoLite Country - Country database for GeoIP
2Name: GeoIP-db-Country
3# Updated every month:
4Version: 2007.08.01
5Release: 1
6License: OPEN DATA LICENSE (see LICENSE.txt)
7Group: Applications/Databases
8Source0: http://www.maxmind.com/download/geoip/database/GeoIP.dat.gz
9# Source0-md5: ce03b15a08e26c88ec2fd8f5c08f8e4b
10Source1: http://www.maxmind.com/download/geoip/database/LICENSE.txt
11# Source1-md5: 8c0bc6e8ebe6ec3bc1580021edb4bba1
12URL: http://www.maxmind.com/app/geolitecountry
13BuildArch: noarch
14Requires: GeoIP-libs
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18GeoIP is a C library that enables the user to find the country that
19any IP address or hostname originates from. It uses a file based
20database that is accurate as of March 2003. This database simply
21contains IP blocks as keys, and countries as values. This database
22should be more complete and accurate than using reverse DNS lookups.
23
24GeoLite Country is similar to the GeoIP Country database, but is not as
25accurate. Should you require greater accuracy, GeoIP Country is a drop-in
26replacement for GeoLite Country.
27
28License disclaimer:
29This product includes GeoLite data created by MaxMind, available from
30http://www.maxmind.com/.
31
32%prep
33%setup -q -c -T
34cp %{SOURCE0} .
35cp %{SOURCE1} .
36
37gunzip GeoIP.dat.gz
38
39%install
40rm -rf $RPM_BUILD_ROOT
41install -d $RPM_BUILD_ROOT%{_datadir}/GeoIP
42
43install GeoIP.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48%files
49%defattr(644,root,root,755)
50%doc *.txt
51%{_datadir}/GeoIP/*.dat
This page took 0.036839 seconds and 4 git commands to generate.