- update to 1.0.5: * Grasshopper update (2.9) to fix font loading deadlock on startup OBS-URL: https://build.opensuse.org/request/show/1064330 OBS-URL: https://build.opensuse.org/package/show/games/rescue?expand=0&rev=9
90 lines
2.7 KiB
RPMSpec
90 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package rescue
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: rescue
|
|
Version: 1.0.5
|
|
Release: 0
|
|
Summary: Action Adventure in Space
|
|
License: GPL-3.0-or-later
|
|
Group: Amusements/Games/Strategy/Other
|
|
URL: https://rescue.sourceforge.net/
|
|
Source0: https://downloads.sourceforge.net/%{name}/Rescue_%{version}.zip
|
|
Source1: %{name}.sh
|
|
Source2: %{name}.desktop
|
|
BuildRequires: dos2unix
|
|
BuildRequires: fdupes
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: unzip
|
|
BuildRequires: update-desktop-files
|
|
Requires: jre <= 1.8.0
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Rescue! Max is an Action Adventure in Space written in java.
|
|
It is based on an old mac game called Rescue! by Tom Spreen.
|
|
|
|
A 2D space real-time, action/strategy game. You are in control of a ship that
|
|
you fly around space fighting enemies and making friends on your way.
|
|
The main objective is to rescue people from planets and take them to star bases.
|
|
|
|
%prep
|
|
%setup -q -n Rescue
|
|
|
|
# extract icon
|
|
unzip -j Rescue.jar rescue/gui/logo.png
|
|
|
|
# Convert to unix line end
|
|
find -name "*.txt" -print0 -or -name "*.htm" -print0 -or -name "*.css" -print0 \
|
|
-or -name "*.ini" -print0 -or -name "*.xml" -print0 | xargs -0 dos2unix
|
|
|
|
# Some docs have the DOS line ends
|
|
dos2unix ChangeLog.txt gpl.txt todo.txt
|
|
|
|
%build
|
|
|
|
%install
|
|
# install wrappers
|
|
install -Dm 0755 %{SOURCE1} %{buildroot}%{_bindir}/%{name}
|
|
|
|
# install directories
|
|
mkdir -p %{buildroot}%{_datadir}/%{name}/{help,lib,missions}
|
|
for d in help lib missions ; do
|
|
cp -a $d %{buildroot}%{_datadir}/%{name}
|
|
done
|
|
|
|
# install Jar files
|
|
install -Dm 0644 *.jar %{buildroot}%{_datadir}/%{name}
|
|
|
|
# install icon
|
|
install -Dm 0644 logo.png %{buildroot}/%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
|
|
|
# install Desktop file
|
|
install -Dm 0644 %{SOURCE2} %{buildroot}%{_datadir}/applications/%{name}.desktop
|
|
|
|
%suse_update_desktop_file %{name}
|
|
%fdupes -s %{buildroot}%{_prefix}
|
|
|
|
%files
|
|
%doc ChangeLog.txt gpl.txt todo.txt
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/%{name}
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
|
|
|
|
%changelog
|