ltris-vl.spec 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. ## -*- coding: utf-8-unix -*-
  2. Summary: Tetlis game with multiplayer mode
  3. Summary(ja): 対戦型テトリス
  4. Name: ltris
  5. Version: 1.0.17
  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
  19. rectangular playing field and can be moved sideways or rotated by 90 degree
  20. units with the aim of building lines without gaps which then disappear
  21. (causing any block above the deleted line to fall down). LTris has three
  22. game modes: In Classic you play until the stack of blocks reaches the top
  23. of the playing field and no new blocks can enter. In Figures the playing
  24. field is reset to a new figure each level and later on tiles and lines
  25. suddenly appear. In Multiplayer up to three players (either human or CPU)
  26. compete with each other sending removed lines to all opponents. And in
  27. Demo you can watch your CPU playing while enjoying a cup of tea!
  28. %prep
  29. %__rm -rf ${RPM_BUILD_ROOT}
  30. %setup -q
  31. %build
  32. %configure --prefix=%{_prefix}
  33. %__make
  34. %install
  35. %__rm -rf ${RPM_BUILD_ROOT}
  36. %__make DESTDIR=${RPM_BUILD_ROOT} install
  37. %find_lang %{name}
  38. %clean
  39. %__rm -rf ${RPM_BUILD_ROOT}
  40. %files -f %{name}.lang
  41. %defattr(-,root,root)
  42. %doc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
  43. %{_bindir}/ltris
  44. %{_datadir}/applications/ltris.desktop
  45. %{_datadir}/icons/ltris48.gif
  46. %{_datadir}/%{name}/figures
  47. %{_datadir}/%{name}/gfx
  48. %{_datadir}/%{name}/sounds
  49. %ghost %{_var}/ltris.hscr
  50. %changelog
  51. * Sun Aug 28 2011 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.17-1
  52. - new upstream release
  53. * Tue Mar 29 2011 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.16-1
  54. - new upstream release
  55. * Mon Jan 03 2011 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.15-1
  56. - new upstream release
  57. * Sat Feb 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.14-1
  58. - new upstream release
  59. * Fri Oct 03 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.11-1vl5
  60. - applied new versioning policy, spec in utf-8
  61. * Sun Jun 3 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl2
  62. - rebuild for VineSeed
  63. * Tue Mar 9 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl1
  64. - initial build for Vine Linux
  65. # * Thu Oct 6 2005 1.0.11-0vl1
  66. # - initial build for Vine Linux
  67. # * Mon May 9 2005 1.0.10-0vl1
  68. # - initial build for Vine Linux
  69. # end of file