klines-vl.spec 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Name: klines
  2. Summary: Tactical Game for KDE
  3. Version: 4.12.2
  4. Release: 1%{?_dist_release}
  5. License: GPLv2
  6. Group: Applications/Accessories
  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. KLines is a simple but highly addictive one player game. The player has to move the
  19. colored balls around the game board, gathering them into the lines of the same color
  20. by five. Once the line is complete it is removed from the board, therefore freeing
  21. precious space. In the same time the new balls keep arriving by three after each move,
  22. filling up the game board.
  23. %prep
  24. %setup -q
  25. %build
  26. mkdir -p %{_target_platform}
  27. pushd %{_target_platform}
  28. %cmake \
  29. -DCMAKE_BUILD_TYPE=release \
  30. -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
  31. -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
  32. -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
  33. -DLIB_INSTALL_DIR:PATH=%{_libdir} \
  34. -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
  35. -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
  36. ..
  37. popd
  38. make %{?_smp_mflags} -C %{_target_platform}
  39. %install
  40. rm -rf $RPM_BUILD_ROOT
  41. make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
  42. %clean
  43. rm -rf $RPM_BUILD_ROOT
  44. %post
  45. touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
  46. %posttrans
  47. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
  48. update-desktop-database -q &> /dev/null ||:
  49. %postun
  50. if [ $1 -eq 0 ] ; then
  51. touch --no-create %{_datadir}/icons/hicolor &> /dev/null
  52. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null
  53. update-desktop-database -q &> /dev/null ||:
  54. fi
  55. %files
  56. %defattr(-,root,root)
  57. %doc COPYING COPYING.DOC
  58. %{_bindir}/%{name}
  59. %{_datadir}/applications/kde4/%{name}.desktop
  60. %{_datadir}/config.kcfg/%{name}.kcfg
  61. %{_datadir}/icons/hicolor/*/*/*
  62. %{_datadir}/kde4/apps/%{name}
  63. %doc %{_docdir}/HTML/en/%{name}/
  64. %changelog
  65. * Sun Feb 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.12.2-1
  66. - new upstream release
  67. * Sun Dec 22 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.4-1
  68. - new upstream release
  69. * Sun Sep 08 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.1-1
  70. - new upstream release
  71. * Sun Jul 07 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.10.5-1
  72. - initial build