123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- Summary: An addictive action-puzzle game involving bouncing penguins
- Summary(ja): 撥ね回るペンギンを囲い込む、中毒性のあるアクションパズルゲーム
- Name: icebreaker
- Version: 1.2.1
- Release: 2%{?_dist_release}
- License: GPL
- Group: Applications/Games
- Source: icebreaker-%{version}.tgz
- Source1: %{name}.desktop
- URL: http://www.mattdm.org/icebreaker/
- Prefix: %{_prefix}
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: SDL-devel, SDL_mixer-devel, /bin/awk
- Requires: SDL, SDL_mixer
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- So, uh, there's a bunch of penguins on an iceberg in Antarctica. You have
- been selected to catch them so they can be shipped to Finland, where they
- are essential to a secret plot for world domination.
- %description -l ja
- そう、えーっと、南極の氷山にペンギンの群れがいます。
- 連中を捕まえてフィンランドに輸送すべく、あなたに白羽の矢が立ちました。
- 同国で極秘裏に進められている世界制覇計画に、連中は必要不可欠なのです。
- %prep
- %setup -q
- %build
- make OPTIMIZE="$RPM_OPT_FLAGS -finline-functions" highscoredir=/var/lib/games prefix=/usr
- %install
- rm -rf $RPM_BUILD_ROOT
- mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
- mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/icebreaker
- mkdir -p ${RPM_BUILD_ROOT}%{_var}/lib/games
- #mkdir -p ${RPM_BUILD_ROOT}/etc/X11/applnk/Games
- mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man6
- install -m 644 *.wav *.bmp ${RPM_BUILD_ROOT}%{_datadir}/icebreaker
- #install -m 644 icebreaker.desktop ${RPM_BUILD_ROOT}/etc/X11/applnk/Games
- install -s -m 755 icebreaker ${RPM_BUILD_ROOT}%{_bindir}
- install -m 644 icebreaker.6 ${RPM_BUILD_ROOT}%{_mandir}/man6
- touch ${RPM_BUILD_ROOT}%{_var}/lib/games/icebreaker.scores
- # add desktop
- mkdir -p $RPM_BUILD_ROOT/%{_datadir}/applications
- install -p -m0644 %{SOURCE1} $RPM_BUILD_ROOT/%{_datadir}/applications/%{name}.desktop
- %post
- touch %{_var}/lib/games/icebreaker.scores
- chown games:games %{_var}/lib/games/icebreaker.scores
- chmod 0664 %{_var}/lib/games/icebreaker.scores
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr (-,root,root)
- %doc README TODO LICENSE ChangeLog
- %attr(2755,root,games) %{_bindir}/icebreaker
- #/etc/X11/applnk/Games/icebreaker.desktop
- %{_datadir}/applications/%{name}.desktop
- %{_datadir}/icebreaker
- %{_mandir}/man6/*
- %attr(664,games,games) %ghost %{_var}/lib/games/icebreaker.scores
- %changelog
- * Sun Sep 28 2008 Shu KONNO <owa@bg.wakwak.com> 1.2-2vl5
- - applied new versioning policy, spec in utf-8
- * Sun Jul 30 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.2-1vl3
- - rebuilt for VineSeed
- - changed Group to Applications/Games
- * Thu May 19 2005 OOI Keita <ooi.keita@gmail.com> - 1.2-1vl2
- - euc spec file
- * Wed Feb 9 2005 OOI Keita <ooik.ovwqlsjxcqwg4dc@privango.jp> - 1.2-1vl1
- - based on original rpm
- - ja summary and description from deb
- * Sat Jul 28 2001 Matthew Miller <mattdm@mattdm.org>
- - 1.2
- * Tue Jul 24 2001 Matthew Miller <mattdm@mattdm.org>
- - move man page section 6
- * Sun Jul 22 2001 Matthew Miller <mattdm@mattdm.org>
- - 1.1
- * Fri Jul 20 2001 Matthew Miller <mattdm@mattdm.org>
- - borrowed idea of using post-script to create high score file
- from Mandrake RPM. That way, it doesn't have to be marked as a config
- file, and yet won't get zapped on upgrade.
- - also, modified Makefile to cope with RPM_OPT_FLAGS, again as per
- Mandrake.
- * Thu Jul 19 2001 Matthew Miller <mattdm@mattdm.org>
- - added man page
- * Tue Jul 18 2001 Matthew Miller <mattdm@mattdm.org>
- - updated to 1.09
- * Thu Oct 5 2000 Matthew Miller <mattdm@mattdm.org>
- - looks good to me. one-point-oh
- * Tue Oct 3 2000 Matthew Miller <mattdm@mattdm.org>
- - updated to 0.995
- - better make process
- * Mon Oct 2 2000 Matthew Miller <mattdm@mattdm.org>
- - updated to 0.99 :)
- * Mon Oct 2 2000 Matthew Miller <mattdm@mattdm.org>
- - updated to 0.98
- * Fri Sep 15 2000 Matthew Miller <mattdm@mattdm.org>
- - first package
|