domination/domination.spec
Dirk Stoecker ab378d84c5 - Update to 1.3.3
* Linux audio fix
- Changes in 1.3.2
  * music update for menu and winning
  * better loading screens when loading online games and
    downloading maps
  * GameGUI: in-game can use standard keyboard shortcut to
    save game
  * GameGUI: main manu - can right click to get to options screen
    on windows
  * fix out of memory error, Better memory management in audio
    system, close audio after playing. 
  * fix for handling unexpected errors in audio system to not
    overload and bring down the maps server
  * RiskGame.getMissions() now returns ALL game missions, to make
    AI development easier
  * SwingGUI: can replay debug game log without having to save it
    to file first
  * SwingGUI: little memory graph on debug screen
- Changes in 1.3.1
  * Sounds effects and music! (memory leak fixed this time)
  * Can change game speed in Option dialog
  * Can view continents values for maps that do not display this
    information
  * MapChooser: can right click and select Map info
  * MapChooser: no repaint macos JDK-19 bug workaround: MapChooser
    loading animation added
  * SwingGUI: can change who owns a country
  * SwingGUI: fixed: unable to start game when all options
    are present
  * MapEditor: smart fill Mnemonic 'F'
  * MapEditor: force user to save map if changed before publish

OBS-URL: https://build.opensuse.org/package/show/games/domination?expand=0&rev=18
2025-03-05 14:16:17 +00:00

98 lines
3.2 KiB
RPMSpec

#
# spec file for package domination
#
# Copyright (c) 2025 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: domination
Version: 1.3.3
Release: 0
Summary: Board game that is a bit like the well known game Risk
License: GPL-3.0-only
Group: Amusements/Games/Strategy/Turn Based
URL: https://domination.sourceforge.net/
Source0: https://downloads.sourceforge.net/%{name}/Domination/%{version}/Domination_%{version}.zip
Source1: %{name}-FlashGUI.sh
Source2: %{name}-Increment1GUI.sh
Source3: %{name}-SimpleGUI.sh
Source4: %{name}-SwingGUI.sh
Source5: %{name}.desktop
Source6: %{name}.png
BuildRequires: dos2unix
BuildRequires: fdupes
BuildRequires: unzip
BuildRequires: update-desktop-files
Requires: %{name}-data
Requires: jre >= 1.6.0
BuildArch: noarch
%description
Domination is a board game that is a bit like the well known game Risk.
Domination is a game that is a bit like the well known board game of Risk
or RisiKo. It has many game options and includes many maps.
Written in java it includes a map editor, a simple map format, multiplayer
network play, single player, hotseat, 5 user interfaces and many more features,
it works in all OSs that run java.
%prep
%setup -q -n Domination
# Convert to unix line end
find -name "*.txt" -print0 -or -name "*.ini" -print0 -or -name "*.cmd" -print0 \
-or -name "*.htm" -print0 -or -name "*.cards" -print0 -or -name "*.map" -print0 \
-or -name "*.properties" -print0 | xargs -0 dos2unix
%build
%install
# install wrappers
install -Dm 0755 %{SOURCE1} %{buildroot}%{_bindir}/%{name}-FlashGUI
install -Dm 0755 %{SOURCE2} %{buildroot}%{_bindir}/%{name}-Increment1GUI
install -Dm 0755 %{SOURCE3} %{buildroot}%{_bindir}/%{name}-SimpleGUI
install -Dm 0755 %{SOURCE4} %{buildroot}%{_bindir}/%{name}-SwingGUI
# install directories
mkdir -p %{buildroot}%{_datadir}/%{name}/{help,lib,maps,maps/preview,resources,sound,sound/medival}
for d in help lib resources ; do
install -Dm 0644 $d/* %{buildroot}%{_datadir}/%{name}/$d
done
# maps
cp -a maps %{buildroot}%{_datadir}/%{name}/
# sound
cp -a sound %{buildroot}%{_datadir}/%{name}/
# install files
for f in *.jar *.txt *.ini ; do
install -Dm 0644 "$f" %{buildroot}%{_datadir}/%{name}
done
# install icon
install -Dm 0644 %{SOURCE6} %{buildroot}%{_datadir}/pixmaps/%{name}.png
# install Desktop file
install -Dm 0644 %{SOURCE5} %{buildroot}%{_datadir}/applications/%{name}.desktop
%suse_update_desktop_file %{name}
%fdupes -s %{buildroot}%{_prefix}
%files
%{_bindir}/%{name}-*GUI
%{_datadir}/applications/%{name}.desktop
%{_datadir}/pixmaps/%{name}.png
%{_datadir}/%{name}
%changelog