Initial commit
This commit is contained in:
parent
8f3c6bd7f7
commit
952084077a
@ -0,0 +1 @@
|
|||||||
|
bastet-0.43.tgz
|
10
bastet.desktop
Normal file
10
bastet.desktop
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Encoding=UTF-8
|
||||||
|
Name=bastet
|
||||||
|
Comment=An evil falling bricks game
|
||||||
|
Exec=bastet
|
||||||
|
Icon=bastet
|
||||||
|
Terminal=true
|
||||||
|
Type=Application
|
||||||
|
Categories=Game;ArcadeGame;
|
BIN
bastet.png
Normal file
BIN
bastet.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
112
bastet.spec
Normal file
112
bastet.spec
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
Name: bastet
|
||||||
|
Version: 0.43
|
||||||
|
Release: 5%{?dist}
|
||||||
|
Summary: An evil falling bricks game
|
||||||
|
|
||||||
|
Group: Amusements/Games
|
||||||
|
License: GPLv3+
|
||||||
|
URL: http://fph.altervista.org/prog/bastet.html
|
||||||
|
Source0: http://fph.altervista.org/prog/files/%{name}-%{version}.tgz
|
||||||
|
Source1: %{name}.desktop
|
||||||
|
# self-made icon
|
||||||
|
Source2: %{name}.png
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
BuildRequires: boost-devel ncurses-devel desktop-file-utils
|
||||||
|
|
||||||
|
|
||||||
|
%description
|
||||||
|
Bastet is a simple ncurses-based falling bricks like game. Unlike
|
||||||
|
normal, however, Bastet does not choose your next brick at random.
|
||||||
|
Instead, it uses a special algorithm designed to choose the worst
|
||||||
|
brick possible. As you can imagine, playing Bastet can be a very
|
||||||
|
frustrating experience!
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
# remove reference to Tetris to match our guidelines
|
||||||
|
sed -e 's/Tetris(R)/any falling bricks game/g' -e 's/Tetris/falling bricks game/g' \
|
||||||
|
-e 's/tetris/falling bricks game/g' README > README.new
|
||||||
|
mv -f README.new README
|
||||||
|
# remove also any reference to Tetris in the bastet manpage
|
||||||
|
sed -e 's/Tetris(r)/any falling bricks game/g' -e 's/tetris/falling bricks game/g' \
|
||||||
|
bastet.6 > bastet.6.new
|
||||||
|
mv -f bastet.6.new bastet.6
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
make %{?_smp_mflags} CXXFLAGS="%{optflags}"
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
|
|
||||||
|
install -p -m 755 bastet %{buildroot}%{_bindir}/bastet
|
||||||
|
|
||||||
|
# below the desktop file and icon stuff
|
||||||
|
desktop-file-install \
|
||||||
|
--dir=%{buildroot}%{_datadir}/applications \
|
||||||
|
%{SOURCE1}
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
|
||||||
|
|
||||||
|
install -p -m 0644 %{SOURCE2} \
|
||||||
|
%{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
||||||
|
|
||||||
|
# manpage
|
||||||
|
mkdir -p %{buildroot}%{_mandir}/man6/
|
||||||
|
install -p -m 0644 %{name}.6 \
|
||||||
|
%{buildroot}%{_mandir}/man6/%{name}.6
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
||||||
|
|
||||||
|
|
||||||
|
%postun
|
||||||
|
if [ $1 -eq 0 ] ; then
|
||||||
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
||||||
|
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
%posttrans
|
||||||
|
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc AUTHORS LICENSE NEWS README
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%{_datadir}/applications/%{name}.desktop
|
||||||
|
%{_datadir}/icons/hicolor/*/apps/%{name}.png
|
||||||
|
%{_mandir}/man6/*
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sat Jun 06 2009 Stefan Posdzich <cheekyboinc@foresightlinux.org> - 0.43-5
|
||||||
|
- Changed CFLAGS to CXXFLAGS
|
||||||
|
|
||||||
|
* Fri Jun 05 2009 Stefan Posdzich <cheekyboinc@foresightlinux.org> - 0.43-4
|
||||||
|
- Added new icon cache scriptlets
|
||||||
|
- Added optflags
|
||||||
|
- Changed license to GPLv3+
|
||||||
|
- Removed manually gzip of manpage
|
||||||
|
|
||||||
|
* Thu Jun 04 2009 Stefan Posdzich <cheekyboinc@foresightlinux.org> - 0.43-3
|
||||||
|
- Add manpage
|
||||||
|
- Removed reference to Tetris in the bastet manpage
|
||||||
|
|
||||||
|
* Mon Jun 01 2009 Stefan Posdzich <cheekyboinc@foresightlinux.org> - 0.43-2
|
||||||
|
- Removed reference to Tetris to match our guidelines
|
||||||
|
|
||||||
|
* Mon Jun 01 2009 Stefan Posdzich <cheekyboinc@foresightlinux.org> - 0.43-1
|
||||||
|
- Initial SPEC file
|
1
import.log
Normal file
1
import.log
Normal file
@ -0,0 +1 @@
|
|||||||
|
bastet-0_43-5_fc11:HEAD:bastet-0.43-5.fc11.src.rpm:1244485516
|
Loading…
Reference in New Issue
Block a user