kubrick-vl.spec 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. Name: kubrick
  2. Summary: 3-D Game based on Rubik's Cube for KDE
  3. Version: 4.11.1
  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. Kubrick is a game based on the Rubik's Cube™ puzzle. The cube sizes range from 2x2x2 up t
  19. 6x6x6, or you can play with irregular "bricks" such as 5x3x2 or "mats" such as 6x4x1 or 2x2x1.
  20. The game has a selection of puzzles at several levels of difficulty, as well as demos of pretty
  21. patterns and solution moves, or you can make up your own puzzles.
  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. %posttrans
  46. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
  47. update-desktop-database -q &> /dev/null ||:
  48. %postun
  49. if [ $1 -eq 0 ] ; then
  50. touch --no-create %{_datadir}/icons/hicolor &> /dev/null
  51. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null
  52. update-desktop-database -q &> /dev/null ||:
  53. fi
  54. %files
  55. %defattr(-,root,root)
  56. %doc COPYING COPYING.DOC
  57. %{_bindir}/%{name}
  58. %{_datadir}/applications/kde4/%{name}.desktop
  59. %{_datadir}/icons/hicolor/*/*/*
  60. %{_datadir}/kde4/apps/%{name}
  61. %doc %{_docdir}/HTML/en/%{name}/
  62. %changelog
  63. * Sun Sep 08 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.11.1-1
  64. - new upstream release
  65. * Sun Jul 07 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.10.5-1
  66. - initial build