libgames-support-vl.spec 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. Summary: Code shared between GNOME games
  2. Name: libgames-support
  3. Version: 1.0.2
  4. Release: 1%{?_dist_release}
  5. Group: System Environment/Libraries
  6. License: GPLv3
  7. URL: https://git.gnome.org/browse/libgames-support/
  8. Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/1.0/%{name}-%{version}.tar.xz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: gtk3-devel
  11. BuildRequires: libgee-devel
  12. Vendor: Project Vine
  13. Distribution: Vine Linux
  14. Packager: Takemikaduchi
  15. %description
  16. Useful functionality shared among GNOME games.
  17. %package devel
  18. Summary: Development tools for %{name}
  19. Summary(ja): %{name}の開発環境
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. Requires: pkgconfig
  23. %description devel
  24. Header files and libraries for building a extension library for the
  25. %{name}.
  26. %package vala
  27. Summary: Vala bindings for %{name}
  28. Summary(ja): %{name} の Vala バインディング
  29. Group: Development/Libraries
  30. Requires: %{name} = %{version}-%{release}
  31. Requires: vala
  32. %description vala
  33. Vala bindings for %{name}.
  34. %prep
  35. %setup -q
  36. %build
  37. %configure --disable-static
  38. %install
  39. rm -rf $RPM_BUILD_ROOT
  40. make install DESTDIR=$RPM_BUILD_ROOT
  41. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
  42. %find_lang %{name}
  43. %clean
  44. rm -rf $RPM_BUILD_ROOT
  45. %post -p /sbin/ldconfig
  46. %postun -p /sbin/ldconfig
  47. %files -f %{name}.lang
  48. %defattr(-,root,root,-)
  49. %doc COPYING COPYING.LESSER README NEWS
  50. %{_libdir}/%{name}.so.*
  51. %files devel
  52. %defattr(-,root,root,-)
  53. %{_includedir}/gnome-games
  54. %{_libdir}/%{name}.so
  55. %{_libdir}/pkgconfig/%{name}-1.0.pc
  56. %files vala
  57. %defattr(-,root,root,-)
  58. %{_datadir}/vala/vapi/libgames-support-1.0.vapi
  59. %changelog
  60. * Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-1
  61. - initial build