source: projects/specs/trunk/g/geocode-glib/geocode-glib-vl.spec @ 9791

Revision 9791, 2.8 KB checked in by Takemikaduchi, 8 years ago (diff)

GNOME 3.18.1, BlueZ 5.35, ICU 56.1, Mesa 11.0.4, PulseAudio 7.1, xserver 1.17.4, etc.

Line 
1Name:           geocode-glib
2Version:        3.18.0
3Release:        1%{?_dist_release}
4Summary:        Geocode Helper library
5
6Group:          Development/Libraries
7License:        GPLv2
8URL:            https://git.gnome.org/browse/geocode-glib
9Source:         http://download.gnome.org/sources/%{name}/3.18/%{name}-%{version}.tar.xz
10
11BuildRequires:  glib2-devel >= 2.34
12BuildRequires:  json-glib-devel >= 0.16.2
13BuildRequires:  libsoup-devel
14BuildRequires:  gobject-introspection-devel
15
16Vendor:                 Project Vine
17Distribution:   Vine Linux
18Packager:               Takemikaduchi
19
20%description
21geocode-glib is a convenience library for the geocoding (finding longitude,
22and latitude from an address) and reverse geocoding (finding an address from
23coordinates). It uses Nominatim service to achieve that. It also caches
24(reverse-)geocoding requests for faster results and to avoid unnecessary server
25load.
26
27
28%package        devel
29Summary:        Development tools for %{name}
30Summary(ja):    %{name} の開発環境
31Group:          Development/Libraries
32Requires:       %{name} = %{version}-%{release}
33Requires:       pkgconfig
34
35%description    devel
36Header files and libraries for building a extension library for the %{name}.
37
38
39%package        docs
40Summary:        Documentation for %{name}
41Summary(ja):    %{name} 用のドキュメント
42Group:          Documentation
43Requires:       %{name} = %{version}-%{release}
44BuildArch:      noarch
45
46%description    docs
47This package contains documentation for %{name}.
48
49
50%prep
51%setup -q
52
53
54%build
55%configure \
56        --with-libproxy
57
58make %{?_smp_mflags}
59
60
61%install
62make install DESTDIR=$RPM_BUILD_ROOT
63
64find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
65
66
67%post -p /sbin/ldconfig
68
69%postun -p /sbin/ldconfig
70
71
72%files
73%defattr(-,root,root,-)
74%doc COPYING.LIB ChangeLog NEWS README
75%{_libdir}/libgeocode-glib.so.*
76%{_libdir}/girepository-1.0/GeocodeGlib-1.0.typelib
77%{_datadir}/icons/gnome/scalable/places/*.svg
78
79%files devel
80%defattr(-,root,root,-)
81%{_includedir}/%{name}-1.0
82%{_libdir}/libgeocode-glib.so
83%{_libdir}/pkgconfig/%{name}-1.0.pc
84%{_datadir}/gir-1.0/GeocodeGlib-1.0.gir
85
86%files docs
87%defattr(-,root,root,-)
88%{_datadir}/gtk-doc/html/%{name}-1.0
89
90
91%changelog
92* Sat Oct 31 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.0-1
93- new upstream release
94
95* Sat May 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.2-1
96- new upstream release
97
98* Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.0-1
99- new upstream release
100
101* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.0-1
102- new upstream release
103
104* Sat May 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.12.2-1
105- new upstream release
106
107* Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.12.0-1
108- new upstream release
109
110* Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-2
111- rebuild with VineSeed environment
112
113* Sun Oct 27 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-1
114- initial build
115
Note: See TracBrowser for help on using the repository browser.