]> git.pld-linux.org Git - packages/GeoIP-db-City.git/blame_incremental - GeoIP-db-City.spec
- 2010.12.05
[packages/GeoIP-db-City.git] / GeoIP-db-City.spec
... / ...
CommitLineData
1Summary: GeoLite City - City database for GeoIP
2Summary(pl.UTF-8): GeoLite City - baza danych miast dla GeoIP
3Name: GeoIP-db-City
4# Updated every month:
5Version: 2010.12.05
6Release: 1
7License: OPEN DATA LICENSE (see LICENSE.txt)
8Group: Applications/Databases
9Source0: http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
10# Source0-md5: 05a5a51695b815d5effe79a7be5cc76f
11Source1: http://www.maxmind.com/download/geoip/database/LICENSE.txt
12# Source1-md5: a1381bd1aa0a0c91dc31b3f1e847cf4a
13URL: http://www.maxmind.com/app/geolitecity
14BuildArch: noarch
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18Determine country, state/region, city, US postal code, US area code,
19metro code, latitude, and longitude information for IP addresses
20worldwide.
21
22License disclaimer: this product includes GeoLite data created by
23MaxMind, available from <http://www.maxmind.com/>.
24
25%description -l pl.UTF-8
26Znajdź państwo, stan/region, miasto, kod pocztowy, kod regionu, kod
27miejski, szerokość i wysokość geograficzną dla adresów IP z całego
28świata.
29
30Informacja licencyjna: ten produkt zawiera dane GeoLite stworzone
31przez MaxWind, dostępne z <http://www.maxwind.com/>.
32
33%prep
34%setup -q -c -T
35cp -a %{SOURCE0} .
36cp -a %{SOURCE1} .
37
38gunzip GeoLiteCity.dat.gz
39
40ver=$(stat -c '%y' GeoLiteCity.dat | awk '{print $1}' | tr - .)
41if [ "$ver" != %{version} ]; then
42 exit 1
43fi
44
45%install
46rm -rf $RPM_BUILD_ROOT
47install -d $RPM_BUILD_ROOT%{_datadir}/GeoIP
48cp -a GeoLiteCity.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP
49ln -s GeoLiteCity.dat $RPM_BUILD_ROOT%{_datadir}/GeoIP/GeoIPCity.dat
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc *.txt
57%dir %{_datadir}/GeoIP
58%{_datadir}/GeoIP/*.dat
This page took 0.082552 seconds and 4 git commands to generate.