source: projects/specs/trunk/l/ltris/ltris-vl.spec @ 521

Revision 521, 2.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1## -*- coding: utf-8-unix -*-
2Summary:        Tetlis game with multiplayer mode
3Summary(ja):    対戦型テトリス
4Name:           ltris
5Version:        1.0.14
6Release:        1%{?_dist_release}
7Source0:        %{name}-%{version}.tar.gz
8License:        GNU General Public License
9Group:          Applications/Games
10URL:            http://lgames.sourceforge.net/
11
12Requires:       SDL
13Requires:       SDL_mixer
14BuildRequires:  SDL-devel
15BuildRequires:  SDL_mixer-devel
16
17BuildRoot:      %{_tmppath}/%{name}-%{version}-root
18
19Packager:       munepi
20
21%description
22LTris 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!
23
24%prep
25%__rm -rf ${RPM_BUILD_ROOT}
26
27%setup -q
28
29%build
30%configure --prefix=%{_prefix}
31%__make
32
33%install
34%__rm -rf ${RPM_BUILD_ROOT}
35%__make DESTDIR=${RPM_BUILD_ROOT} install
36
37%find_lang %{name}
38
39%clean
40%__rm -rf ${RPM_BUILD_ROOT}
41
42
43%files -f %{name}.lang
44%defattr(-,root,root)
45%doc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
46%{_bindir}/ltris
47%{_datadir}/applications/ltris.desktop
48%{_datadir}/icons/ltris48.gif
49%{_datadir}/%{name}/figures
50%{_datadir}/%{name}/gfx
51%{_datadir}/%{name}/sounds
52%ghost %{_var}/ltris.hscr
53
54
55%changelog
56* Sat Feb 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.0.14-1
57- new upstream release
58
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
62* Sun Jun 3 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl2
63- rebuild for VineSeed
64
65* Tue Mar 9 2007 Munehiro Yamamoto <myamamoto@g.math.s.chiba-u.ac.jp> 1.0.11-0vl1
66- initial build for Vine Linux
67
68# * Thu Oct 6 2005 1.0.11-0vl1
69# - initial build for Vine Linux
70
71# * Mon May 9 2005 1.0.10-0vl1
72# - initial build for Vine Linux
73
74# end of file
Note: See TracBrowser for help on using the repository browser.