forked from maxmind/geoip-api-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeoIP.spec.in
76 lines (61 loc) · 1.89 KB
/
GeoIP.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Name: @PACKAGE@
Version: @VERSION@
Summary: GeoIP is a C library finds the location of an IP address.
Release: 1
Group: System Environment/Libraries
URL: http://dev.maxmind.com/geoip/downloadable
Vendor: MaxMind, Inc.
Source0: http://www.maxmind.com/download/geoip/api/c/GeoIP-latest.tar.gz
License: LGPLv2.1+
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
GeoIP is a C library that enables the user to find geographical and
network information of an IP address.
Included is a free GeoLite Country database
that is updated at the beginning of every month.
To download the latest free GeoLite databases, go to:
http://dev.maxmind.com/geoip/geolite
%package devel
Summary: GeoIP headers, libraries
Group: Development/Libraries
Requires: %name = %{version}
%description devel
This package contain the devel files for GeoIP.
%prep
%setup -q
%build
%configure
make
make check
%install
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
%makeinstall
# Fixup permissions on shared libraries so that findreqs will work right.
chmod 755 $RPM_BUILD_ROOT/%{_libdir}/*
%clean
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog README.md TODO
%attr(0755,root,root) %{_libdir}/*.so.*.*
%{_bindir}/*
%{_sysconfdir}/*
%dir %{_datadir}/GeoIP
%{_datadir}/GeoIP/*
%{_libdir}/*.so
%{_mandir}/*/*
%files devel
%{_includedir}/*
%{_libdir}/*.a
%{_libdir}/*.la
%changelog
* Fri Apr 14 2006 Thomas Mather <[email protected]>
- Updated description to reference free GeoLite City database
* Thu Jul 7 2005 Thomas Mather <[email protected]>
- Updated description to reflect monthly updates for free country database.
* Mon Sep 8 2003 Dr. Peter Bieringer
- Fix for RHL 9, created a new devel package definition.
* Thu Feb 27 2003 Ryan Weaver <[email protected]>
- Initial RPM Build