geoclue2-vl.spec 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Summary: A modular geoinformation service
  2. Summary(ja): モジュール型地理情報サービス
  3. Name: geoclue2
  4. Version: 2.0.0
  5. Release: 1%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: GPLv2+
  8. URL: http://www.freedesktop.org/wiki/Software/GeoClue/
  9. Source0: http://cgit.freedesktop.org/geoclue/snapshot/geoclue-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: geocode-glib-devel
  12. BuildRequires: json-glib-devel
  13. BuildRequires: libsoup-devel
  14. BuildRequires: gtk-doc
  15. BuildRequires: itstool
  16. Vendor: Project Vine
  17. Distribution: Vine Linux
  18. %description
  19. Geoclue is a modular geoinformation service built on top of the D-Bus
  20. messaging system. The goal of the Geoclue project is to make creating
  21. location-aware applications as simple as possible.
  22. %package devel
  23. Summary: Development package for geoclue
  24. Summary(ja): geoclue の開発パッケージ
  25. Group: Development/Libraries
  26. Requires: %{name} = %{version}-%{release}
  27. Requires: pkgconfig
  28. %description devel
  29. Files for development with geoclue.
  30. %prep
  31. %setup -q -n geoclue-%{version}
  32. %build
  33. gtkdocize
  34. autoreconf -v --force --install
  35. intltoolize -f
  36. %configure \
  37. --disable-static \
  38. --disable-gtk-doc \
  39. --disable-geoip-server
  40. make %{?_smp_mflags}
  41. %install
  42. rm -rf $RPM_BUILD_ROOT
  43. make install DESTDIR=$RPM_BUILD_ROOT
  44. find %{buildroot} -name '*.la' -exec rm -f {} ';'
  45. %clean
  46. rm -rf $RPM_BUILD_ROOT
  47. %files
  48. %defattr(-,root,root,-)
  49. %doc AUTHORS COPYING README
  50. %{_sysconfdir}/dbus-1/system.d/org.freedesktop.GeoClue2.conf
  51. %{_libexecdir}/geoclue
  52. %{_datadir}/dbus-1/system-services/org.freedesktop.GeoClue2.service
  53. %{_datadir}/geoclue-2.0/geoclue-interface.xml
  54. %files devel
  55. %defattr(-,root,root,-)
  56. %{_libdir}/pkgconfig/geoclue-2.0.pc
  57. %changelog
  58. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.0-1
  59. - initial build