libindicator-vl.spec 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. Summary: a set of symbols and convience functions that all indicators would like to use
  2. Name: libindicator
  3. Version: 12.10.1
  4. Release: 1%{?_dist_release}
  5. License: GPLv3
  6. Group: System Environment/Libraries
  7. URL: https://launchpad.net/libindicator
  8. Source0: %{name}-%{version}.tar.gz
  9. Patch0: libindicator-12.10.1-deprecated.patch
  10. Patch1: libindicator-12.10.1-LIBM.patch
  11. Patch2: libindicator-12.10.1-test.patch
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildRequires: gtk3-devel >= 2.91
  14. BuildRequires: glib2-devel >= 2.22
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. Packager: iwaim
  18. %description
  19. A set of symbols and convience functions that all indicators would like to use. Not of real use outside of the Ayatana indicators project.
  20. %package devel
  21. Summary: Header files and libraries for %{name}
  22. Group: Development/Libraries
  23. Requires: %{name} = %{version}-%{release}
  24. %description devel
  25. The %{name}-devel package contains the header files and libraries.
  26. %prep
  27. %setup -q
  28. %patch0 -p1
  29. %patch1 -p1
  30. #%patch2 -p1
  31. %build
  32. %configure --enable-static=no
  33. make
  34. %install
  35. rm -rf $RPM_BUILD_ROOT
  36. %makeinstall
  37. %__rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  38. %clean
  39. rm -rf $RPM_BUILD_ROOT
  40. #%check
  41. #make check
  42. %files
  43. %defattr(-,root,root,-)
  44. %doc README AUTHORS COPYING ChangeLog NEWS
  45. %{_libdir}/libdummy*.so
  46. %{_libdir}/*.so.*
  47. %{_libexecdir}/indicator-loader3
  48. %{_datadir}/%{name}/80indicator-debugging
  49. %files devel
  50. %defattr(-,root,root,-)
  51. %{_libdir}/pkgconfig/indicator3-0.4.pc
  52. %{_includedir}/%{name}3-0.4
  53. %{_libdir}/libindicator3.so
  54. %changelog
  55. * Sat May 19 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 12.10.1-1
  56. - Initial build.