ltris-vl.spec 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ## -*- coding: utf-8-unix -*-
  2. Summary: Tetlis game with multiplayer mode
  3. Summary(ja): 対戦型テトリス
  4. Name: ltris
  5. Version: 1.0.14
  6. Release: 1%{?_dist_release}
  7. Source0: %{name}-%{version}.tar.gz
  8. License: GNU General Public License
  9. Group: Applications/Games
  10. URL: http://lgames.sourceforge.net/
  11. Requires: SDL
  12. Requires: SDL_mixer
  13. BuildRequires: SDL-devel
  14. BuildRequires: SDL_mixer-devel
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  16. Packager: munepi
  17. %description
  18. LTris as a tetris clone: differently shaped blocks are falling down the rectangular playing field and can be moved sideways or rotated by 90 degree units with the aim of building lines without gaps which then disappear (causing any block above the deleted line to fall down). LTris has three game modes: In Classic you play until the stack of blocks reaches the top of the playing field and no new blocks can enter. In Figures the playing field is reset to a new figure each level and later on tiles and lines suddenly appear. In Multiplayer up to three players (either human or CPU) compete with each other sending removed lines to all opponents. And in Demo you can watch your CPU playing while enjoying a cup of tea!
  19. %prep
  20. %__rm -rf ${RPM_BUILD_ROOT}
  21. %setup -q
  22. %build
  23. %configure --prefix=%{_prefix}
  24. %__make
  25. %install
  26. %__rm -rf ${RPM_BUILD_ROOT}
  27. %__make DESTDIR=${RPM_BUILD_ROOT} install
  28. %find_lang %{name}
  29. %clean
  30. %__rm -rf ${RPM_BUILD_ROOT}
  31. %files -f %{name}.lang
  32. %defattr(-,root,root)
  33. %doc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
  34. %{_bindir}/ltris
  35. %{_datadir}/applications/ltris.desktop
  36. %{_datadir}/icons/ltris48.gif
  37. %{_datadir}/%{name}/figures
  38. %{_datadir}/%{name}/gfx
  39. %{_datadir}/%{name}/sounds
  40. %ghost %{_var}/ltris.hscr
  41. %changelog
  42. * Sat Feb 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.14-1
  43. - new upstream release
  44. * Fri Oct 03 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.11-1vl5
  45. - applied new versioning policy, spec in utf-8
  46. * Sun Jun 3 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl2
  47. - rebuild for VineSeed
  48. * Tue Mar 9 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl1
  49. - initial build for Vine Linux
  50. # * Thu Oct 6 2005 1.0.11-0vl1
  51. # - initial build for Vine Linux
  52. # * Mon May 9 2005 1.0.10-0vl1
  53. # - initial build for Vine Linux
  54. # end of file