ddnet/ddnet.spec
Dirk Stoecker 3ff96e90a6 Accepting request 1113185 from home:Kieltux:branches:games
- Update to version 17.2.1:
  * [Client] Multiview spectating
  * [Client] Improved font selection using fonts/index.json,
    updated fonts
  * [Client] 100 times faster text rendering, better space use
  * [Client] Add goto_switch and goto_tele commands
  * [Client] Add Galician language
  * [Client] Select storage locations in demo browser
  * [Editor] Support bezier envelope curves in maps
  * [Editor] Zoomable envelope editor
  * [Editor] Multiple selection in envelope editor, add grid,
    box selection
  * [Client] Render message when qutting/restarting client
  * [Client] Support ./DDNet "connect
    tw-0.6+udp://ger2.ddnet.org:8303"
  * [Client] Implement elasticity tuning values
    (ground_elasticity_x/y)
  * [Client] Execute CFGFLAG_GAME configs from map load on client
  * [Client] No delay for direction arrows and aim line toggle
  * [Client] Improve demo/video renderer UI
  * [Client] Connect to server faster
  * [Client] Fix HUD weapons rendering
  * [Client] Make online clan friends removable
  * [Client] Fix prediction of pickup
  * [Client] Fix text wrapping with long strings
  * [Client] Fix enter in server browser
  * [Client] Fix invalid texture crash in Vulkan
  * [Client] Don't load RGB images
  * [Client] Support selecting text in both consoles
  * [Client] Fix emotes being shown for other tee
  * [Editor] Allow saving map which is running in server
  * [Editor] Show message when player is moved ingame
  * [Editor] Selectable quadpoints
  * [Editor] Keep selection when moving layers
  * [Editor] Use temporary file when saving map to prevent
    corruption
  * [Editor] Support deleting/renaming folders
  * [Editor] Perform sanity check and show errors when loading map
  * [Editor] Fix hookthrough not being fully removed when
    filling selection
  * [Editor] Fix crashes with popup menus
  * [Editor] Improve font scaling and ellipsis
  * [Editor] Fix hotkeys while editboxes are active
  * [Editor] Fix quadpoint selection, easier point selection
  * [Editor] Fix inaccurate envelope calculation
  * [Editor] Set default name when saving map under new name
    or as copy
  * [Server & Client] Allow server to redirect clients
  * [Server] Separate log levels for each output
    (console/stdout_output_level)
  * [Server] Fix killfeed for teams
  * [Server] Prevent /swap with paused players
  * [Server] Fix crash with DNSBL

OBS-URL: https://build.opensuse.org/request/show/1113185
OBS-URL: https://build.opensuse.org/package/show/games/ddnet?expand=0&rev=29
2023-09-26 08:57:22 +00:00

140 lines
4.1 KiB
RPMSpec

#
# spec file for package ddnet
#
# 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: ddnet
Version: 17.2.1
Release: 0
Summary: DDraceNetwork, a cooperative racing mod of Teeworlds
License: Apache-2.0 AND CC-BY-SA-3.0 AND Zlib AND MIT AND SUSE-Public-Domain
Group: Amusements/Games/Action/Race
URL: https://ddnet.org/
Source0: https://github.com/ddnet/ddnet/archive/%{version}/%{name}-%{version}.tar.gz
Source1: vendor.tar.xz
Source2: cargo_config
BuildRequires: Mesa-libGLESv3-devel
BuildRequires: appstream-glib
BuildRequires: cargo
BuildRequires: cmake
BuildRequires: desktop-file-utils
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: glslang-devel
BuildRequires: hicolor-icon-theme
BuildRequires: libminiupnpc-devel
BuildRequires: pkgconfig
BuildRequires: pnglite-devel
BuildRequires: python3
BuildRequires: rust
BuildRequires: rust-std
BuildRequires: pkgconfig(freetype2)
BuildRequires: pkgconfig(glew)
BuildRequires: pkgconfig(gtest)
BuildRequires: pkgconfig(libcurl)
BuildRequires: pkgconfig(libnotify)
BuildRequires: pkgconfig(libpng)
BuildRequires: pkgconfig(ogg)
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(opus)
BuildRequires: pkgconfig(opusfile)
BuildRequires: pkgconfig(sdl2)
BuildRequires: pkgconfig(sqlite3)
BuildRequires: pkgconfig(vulkan)
BuildRequires: pkgconfig(wavpack)
BuildRequires: pkgconfig(zlib)
Requires: %{name}-data = %{version}-%{release}
%description
DDraceNetwork (DDNet) is an actively maintained version of DDRace,
a Teeworlds modification with a unique cooperative gameplay.
Help each other play through custom maps with up to 64 players,
compete against the best in international tournaments, design your
own maps, or run your own server.
%package data
Summary: Data files for %{name}
Requires: %{name} = %{version}-%{release}
BuildArch: noarch
%description data
Data files for DDraceNetwork (DDNet).
%package server
Summary: Standalone server for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description server
Standalone server for DDraceNetwork (DDNet).
%prep
%setup -qa1
mkdir cargo-home
cat >cargo-home/config <<EOF
[source.crates-io]
registry = 'https://github.com/rust-lang/crates.io-index'
replace-with = 'vendored-sources'
[source."https://github.com/selaux/android-ndk-rs"]
git = "https://github.com/selaux/android-ndk-rs"
replace-with = "vendored-sources"
[source.vendored-sources]
directory = './vendor'
EOF
%build
export CARGO_HOME=`pwd`/cargo-home/
mkdir -p build && cd build
# NOTE that %%cmake macro breaks linking.
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DPREFER_BUNDLED_LIBS=OFF \
-DAUTOUPDATE=OFF \
-DANTIBOT=ON \
-DUPNP=ON \
-DSTEAM=OFF \
-DVIDEORECORDER=OFF
%install
export CARGO_HOME=`pwd`/cargo-home/
%cmake_install
install -Dp -m 0644 man/DDNet.6 %{buildroot}%{_mandir}/man6/DDNet.6
install -Dp -m 0644 man/DDNet-Server.6 %{buildroot}%{_mandir}/man6/DDNet-Server.6
%fdupes %{buildroot}%{_datadir}
%files
%license license.txt
%doc README.md
%{_mandir}/man6/DDNet.6%{?ext_man}
%{_bindir}/DDNet
%{_libdir}/%{name}/
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
%{_datadir}/metainfo/*.appdata.xml
%files data
%{_datadir}/%{name}/
%files server
%{_mandir}/man6/DDNet-Server.6%{?ext_man}
%{_bindir}/DDNet-Server
%{_datadir}/icons/hicolor/*/apps/%{name}-server.png
%changelog