libsecret-vl.spec 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. Name: libsecret
  2. Version: 0.16
  3. Release: 2%{?_dist_release}
  4. Summary: GObject based library for accessing the Secret Service API
  5. Summary(ja): シークレットサービス API アクセス用の GObject 基本ライブラリ
  6. Group: System Environment/Libraries
  7. License: LGPLv2+
  8. URL: https://live.gnome.org/Libsecret
  9. Source0: http://download.gnome.org/sources/libsecret/0.16/%{name}-%{version}.tar.xz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: glib2-devel >= 2.12.0
  12. BuildRequires: gobject-introspection-devel
  13. BuildRequires: libxslt-devel
  14. BuildRequires: libgcrypt-devel
  15. BuildRequires: gtk-doc
  16. Vendor: Project Vine
  17. Distribution: Vine Linux
  18. Packager: Takemikaduchi
  19. %description
  20. libsecret is a library for storing and retrieving passwords and other secrets.
  21. It communicates with the "Secret Service" using DBus. gnome-keyring and
  22. ksecretservice are both implementations of a Secret Service.
  23. libsecret replaces libgnome-keyring.
  24. %package devel
  25. Summary: Development files for %{name}
  26. Summary(ja): %{name} の開発ファイル
  27. Group: Development/Libraries
  28. Requires: %{name} = %{version}-%{release}
  29. Requires: pkgconfig
  30. %description devel
  31. The %{name}-devel package contains libraries and header files for
  32. developing applications that use %{name}.
  33. %package doc
  34. Summary: Documentation for %{name}
  35. Summary(ja): %{name} 用のドキュメント
  36. Group: Documentation
  37. Requires: %{name} = %{version}-%{release}
  38. BuildArch: noarch
  39. %description doc
  40. This package contains documentation for %{name}.
  41. %prep
  42. %setup -q
  43. %build
  44. %configure --disable-static
  45. make %{?_smp_mflags}
  46. %check
  47. %install
  48. rm -rf $RPM_BUILD_ROOT
  49. make install DESTDIR=$RPM_BUILD_ROOT
  50. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  51. %find_lang %{name}
  52. %clean
  53. rm -rf $RPM_BUILD_ROOT
  54. %post -p /sbin/ldconfig
  55. %postun -p /sbin/ldconfig
  56. %files -f %{name}.lang
  57. %defattr(-,root,root,-)
  58. %doc AUTHORS ChangeLog COPYING NEWS README
  59. %{_bindir}/secret-tool
  60. %{_libdir}/*.so.*
  61. %{_libdir}/girepository-1.0/*.typelib
  62. %{_mandir}/man1/secret-tool.1.gz
  63. %files devel
  64. %defattr(-,root,root,-)
  65. %{_includedir}/%{name}-1
  66. %{_libdir}/*.so
  67. %{_libdir}/pkgconfig/*.pc
  68. %{_datadir}/gir-1.0/*.gir
  69. %files doc
  70. %defattr(-,root,root,-)
  71. %{_datadir}/gtk-doc/html/%{name}-1
  72. %changelog
  73. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16-2
  74. - rebuild with VineSeed environment
  75. * Sat Aug 31 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16-1
  76. - new upstream release
  77. * Thu Apr 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.15-1
  78. - new upstream release
  79. * Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.11-1
  80. - new upstream release
  81. * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10-1
  82. - initial build