kreversi-vl.spec 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. Name: kreversi
  2. Summary: Reversi Board Game for KDE
  3. Version: 4.14.3
  4. Release: 2%{?_dist_release}
  5. License: GPLv2
  6. Group: Applications/Games
  7. URL: http://www.kde.org/applications/games/
  8. Source: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.xz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: desktop-file-utils
  11. BuildRequires: kdelibs4-devel >= %{version}
  12. BuildRequires: libkdegames-devel >= %{version}
  13. Requires(posttrans,postun): desktop-file-utils
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. Packager: Takemikaduchi
  17. %description
  18. KReversi is a simple one player strategy game played against the computer.
  19. If a player's piece is captured by an opposing player, that piece is turned
  20. over to reveal the color of that player. A winner is declared when one player
  21. has more pieces of his own color on the board and there are no more possible moves.
  22. %prep
  23. %setup -q
  24. %build
  25. mkdir -p %{_target_platform}
  26. pushd %{_target_platform}
  27. %cmake \
  28. -DCMAKE_BUILD_TYPE=release \
  29. -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
  30. -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
  31. -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
  32. -DLIB_INSTALL_DIR:PATH=%{_libdir} \
  33. -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
  34. -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
  35. ..
  36. popd
  37. make %{?_smp_mflags} -C %{_target_platform}
  38. %install
  39. rm -rf $RPM_BUILD_ROOT
  40. make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
  41. %clean
  42. rm -rf $RPM_BUILD_ROOT
  43. %post
  44. touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
  45. touch --no-create %{_datadir}/icons/oxygen &> /dev/null || :
  46. %posttrans
  47. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
  48. gtk-update-icon-cache %{_datadir}/icons/oxygen &> /dev/null || :
  49. update-desktop-database -q &> /dev/null ||:
  50. %postun
  51. if [ $1 -eq 0 ] ; then
  52. touch --no-create %{_datadir}/icons/hicolor &> /dev/null
  53. touch --no-create %{_datadir}/icons/oxygen &> /dev/null
  54. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null
  55. gtk-update-icon-cache %{_datadir}/icons/oxygen &> /dev/null
  56. update-desktop-database -q &> /dev/null ||:
  57. fi
  58. %files
  59. %defattr(-,root,root)
  60. %doc COPYING COPYING.DOC
  61. %{_bindir}/%{name}
  62. %{_datadir}/applications/kde4/%{name}.desktop
  63. %{_datadir}/icons/hicolor/*/*/*
  64. %{_datadir}/icons/oxygen/*/*/*
  65. %{_datadir}/kde4/apps/%{name}
  66. %doc %{_docdir}/HTML/en/%{name}/
  67. %changelog
  68. * Sat Jul 09 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.14.3-2
  69. - rebuild with gcc-5.4.0
  70. * Thu Jan 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.14.3-1
  71. - new upstream release
  72. * Wed May 07 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.12.5-1
  73. - new upstream release
  74. * Sun Feb 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.12.2-1
  75. - new upstream release
  76. * Sun Dec 22 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.4-1
  77. - new upstream release
  78. * Sun Sep 08 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.1-1
  79. - new upstream release
  80. * Sun Jul 07 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.10.5-1
  81. - initial build