]> git.pld-linux.org Git - packages/geoclue2.git/blame - geoclue2.spec
- updated to 2.4.3
[packages/geoclue2.git] / geoclue2.spec
CommitLineData
82e8bc7e
JB
1#
2# Conditional build:
3%bcond_without static_libs # static library
4#
e7373d81
JB
5Summary: A modular geoinformation service
6Summary(pl.UTF-8): Modularna usługa geoinformacyjna
7Name: geoclue2
e618cd11 8Version: 2.4.3
82e8bc7e
JB
9Release: 1
10License: GPL v2+ (programs), LGPL v2.1+ (library)
e7373d81 11Group: Applications
e618cd11
JB
12Source0: https://www.freedesktop.org/software/geoclue/releases/2.4/geoclue-%{version}.tar.xz
13# Source0-md5: 86381eeff164a890eb2178ceb5823cfe
14URL: https://geoclue.freedesktop.org/
fdf25fec 15BuildRequires: ModemManager-devel >= 1.0.0
e7373d81
JB
16BuildRequires: autoconf >= 2.63
17BuildRequires: automake >= 1:1.11
82e8bc7e
JB
18BuildRequires: avahi-devel >= 0.6.10
19BuildRequires: avahi-glib-devel >= 0.6.10
e7373d81 20BuildRequires: glib2-devel >= 1:2.34.0
4f34e5d2 21BuildRequires: gnome-common
82e8bc7e 22BuildRequires: gobject-introspection-devel >= 0.10
4f34e5d2 23BuildRequires: gtk-doc >= 1.0
fdf25fec 24BuildRequires: intltool >= 0.40.0
e7373d81 25BuildRequires: json-glib-devel >= 0.14
fdf25fec 26BuildRequires: libnotify-devel
82e8bc7e 27BuildRequires: libsoup-devel >= 2.42
e7373d81 28BuildRequires: libtool >= 2:2.2
e7373d81 29BuildRequires: pkgconfig >= 1:0.22
82e8bc7e 30BuildRequires: tar >= 1:1.22
e7373d81 31BuildRequires: yelp-tools
82e8bc7e
JB
32BuildRequires: xz
33Requires: %{name}-libs = %{version}-%{release}
34Requires: avahi-libs >= 0.6.10
35Requires: avahi-glib >= 0.6.10
e7373d81 36Requires: dbus
e7373d81 37Requires: json-glib >= 0.14
82e8bc7e 38Requires: libsoup >= 2.42
e7373d81
JB
39BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
40
41%description
42Geoclue is a modular geoinformation service built on top of the D-Bus
43messaging system. The goal of the Geoclue project is to make creating
44location-aware applications as simple as possible.
45
46%description -l pl.UTF-8
47Geoclue to modularna usługa geoinformacyjna zbudowana w oparciu o
48system komunikacji D-Bus. Celem projektu jest jak największe
49ułatwienie tworzenia aplikacji uwzględniających lokalizację.
50
82e8bc7e
JB
51%package libs
52Summary: Library to interact with Geoclue service
53Summary(pl.UTF-8): Biblioteka do współpracy z usługą Geoclue
54License: LGPL v2.1+
55Group: Libraries
56Requires: glib2 >= 1:2.34.0
57
58%description libs
59Library to interact with Geoclue service.
60
61%description libs -l pl.UTF-8
62Biblioteka do współpracy z usługą Geoclue.
63
e7373d81
JB
64%package devel
65Summary: Development package for geoclue2
66Summary(pl.UTF-8): Pakiet programistyczny geoclue2
82e8bc7e 67License: LGPL v2.1+
e7373d81 68Group: Development/Libraries
82e8bc7e 69Requires: %{name}-libs = %{version}-%{release}
e7373d81 70Requires: glib2-devel >= 1:2.34.0
e7373d81
JB
71
72%description devel
73Header files for development with geoclue2.
74
75%description devel -l pl.UTF-8
76Pliki nagłówkowe do programowania z użyciem geoclue2.
77
82e8bc7e
JB
78%package static
79Summary: Static geoclue2 library
80Summary(pl.UTF-8): Statyczna biblioteka geoclue2
81License: LGPL v2.1+
82Group: Development/Libraries
83Requires: %{name}-devel = %{version}-%{release}
84
85%description static
86Static geoclue2 library.
87
88%description static -l pl.UTF-8
89Statyczna biblioteka geoclue2.
90
e7373d81
JB
91%prep
92%setup -q -n geoclue-%{version}
93
e7373d81 94%build
fdf25fec 95%{__intltoolize}
e7373d81 96%{__libtoolize}
fdf25fec 97%{__aclocal} -I m4
e7373d81
JB
98%{__autoconf}
99%{__autoheader}
100%{__automake}
101%configure \
fdf25fec 102 --enable-demo-agent \
0acf609d 103 --disable-silent-rules \
82e8bc7e 104 %{?with_static_libs:--enable-static} \
0acf609d 105 --with-systemdsystemunitdir=%{systemdunitdir}
e7373d81
JB
106
107%{__make}
108
109%install
110rm -rf $RPM_BUILD_ROOT
111
112%{__make} install \
113 DESTDIR=$RPM_BUILD_ROOT
114
82e8bc7e
JB
115# obsoleted by pkg-config
116%{__rm} $RPM_BUILD_ROOT%{_libdir}/libgeoclue-2.la
117
e7373d81
JB
118%clean
119rm -rf $RPM_BUILD_ROOT
120
82e8bc7e
JB
121%post libs -p /sbin/ldconfig
122%postun libs -p /sbin/ldconfig
123
e7373d81
JB
124%files
125%defattr(644,root,root,755)
126%doc NEWS README
e7373d81 127%attr(755,root,root) %{_libexecdir}/geoclue
fdf25fec
JB
128%dir %{_sysconfdir}/geoclue
129%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/geoclue/geoclue.conf
130%{systemdunitdir}/geoclue.service
e7373d81 131/etc/dbus-1/system.d/org.freedesktop.GeoClue2.conf
fdf25fec 132/etc/dbus-1/system.d/org.freedesktop.GeoClue2.Agent.conf
e7373d81 133%{_datadir}/dbus-1/system-services/org.freedesktop.GeoClue2.service
fdf25fec
JB
134# demos
135%dir %{_libexecdir}/geoclue-2.0
136%dir %{_libexecdir}/geoclue-2.0/demos
137%attr(755,root,root) %{_libexecdir}/geoclue-2.0/demos/agent
138%attr(755,root,root) %{_libexecdir}/geoclue-2.0/demos/where-am-i
139%{_desktopdir}/geoclue-demo-agent.desktop
140%{_desktopdir}/geoclue-where-am-i.desktop
e7373d81 141
82e8bc7e
JB
142%files libs
143%defattr(644,root,root,755)
144%attr(755,root,root) %{_libdir}/libgeoclue-2.so.*.*.*
145%attr(755,root,root) %ghost %{_libdir}/libgeoclue-2.so.0
146%{_libdir}/girepository-1.0/Geoclue-2.0.typelib
147
e7373d81
JB
148%files devel
149%defattr(644,root,root,755)
82e8bc7e
JB
150%attr(755,root,root) %{_libdir}/libgeoclue-2.so
151%{_includedir}/libgeoclue-2.0
152%{_datadir}/gir-1.0/Geoclue-2.0.gir
e7373d81 153%{_pkgconfigdir}/geoclue-2.0.pc
82e8bc7e 154%{_pkgconfigdir}/libgeoclue-2.0.pc
fdf25fec
JB
155%{_datadir}/dbus-1/interfaces/org.freedesktop.GeoClue2.xml
156%{_datadir}/dbus-1/interfaces/org.freedesktop.GeoClue2.Agent.xml
82e8bc7e
JB
157%{_datadir}/dbus-1/interfaces/org.freedesktop.GeoClue2.Client.xml
158%{_datadir}/dbus-1/interfaces/org.freedesktop.GeoClue2.Location.xml
159%{_datadir}/dbus-1/interfaces/org.freedesktop.GeoClue2.Manager.xml
160
161%if %{with static_libs}
162%files static
163%defattr(644,root,root,755)
164%{_libdir}/libgeoclue-2.a
165%endif
This page took 0.10912 seconds and 4 git commands to generate.