1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- ## -*- coding: utf-8-unix -*-
- Summary: Tetlis game with multiplayer mode
- Summary(ja): 対戦型テトリス
- Name: ltris
- Version: 1.0.16
- Release: 1%{?_dist_release}
- Source0: %{name}-%{version}.tar.gz
- License: GNU General Public License
- Group: Applications/Games
- URL: http://lgames.sourceforge.net/
- Requires: SDL
- Requires: SDL_mixer
- BuildRequires: SDL-devel
- BuildRequires: SDL_mixer-devel
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Packager: munepi
- %description
- 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!
- %prep
- %__rm -rf ${RPM_BUILD_ROOT}
- %setup -q
- %build
- %configure --prefix=%{_prefix}
- %__make
- %install
- %__rm -rf ${RPM_BUILD_ROOT}
- %__make DESTDIR=${RPM_BUILD_ROOT} install
- %find_lang %{name}
- %clean
- %__rm -rf ${RPM_BUILD_ROOT}
- %files -f %{name}.lang
- %defattr(-,root,root)
- %doc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
- %{_bindir}/ltris
- %{_datadir}/applications/ltris.desktop
- %{_datadir}/icons/ltris48.gif
- %{_datadir}/%{name}/figures
- %{_datadir}/%{name}/gfx
- %{_datadir}/%{name}/sounds
- %ghost %{_var}/ltris.hscr
- %changelog
- * Tue Mar 29 2011 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.16-1
- - new upstream release
- * Mon Jan 03 2011 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.15-1
- - new upstream release
- * Sat Feb 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.14-1
- - new upstream release
- * Fri Oct 03 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.11-1vl5
- - applied new versioning policy, spec in utf-8
- * Sun Jun 3 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl2
- - rebuild for VineSeed
- * Tue Mar 9 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl1
- - initial build for Vine Linux
- # * Thu Oct 6 2005 1.0.11-0vl1
- # - initial build for Vine Linux
- # * Mon May 9 2005 1.0.10-0vl1
- # - initial build for Vine Linux
- # end of file
|