SHA256
1
0
forked from pool/ddnet
ddnet/ddnet.spec
Carsten Ziepke 0a5137f14b Accepting request 1143838 from home:Kieltux:branches:games
- Update to version 18.0.3:
  * [Client] Community server filter instead of DDNet/KoG tabs
  * [Client] Add finish info messages
  * [Client] Editable chat size and width
  * [Client] Console: Scroll, search (ctrl-f), argument
    autocompletion
  * [Editor] Undo/Redo
  * [Editor] Improved quad handling
  * [Editor] Color palette and pipette
  * [Client] Add /join [player] to join a player's team
  * [Client] Improve performance when rendering text
  * [Client] Multi-view: Don't zoom below cl_default_zoom
  * [Client] Save current chat input when pressing up
  * [Client] Better prediction margin updates
  * [Client] Count deaths in statboard
  * [Client] Quote names with spaces when auto-completing names
    in commands
  * [Client] Config manager improvements
  * [Client] Validate filenames and network packets
  * [Client] Fix votes with timeout over 60 seconds not
    being shown
  * [Client] Better key reader button in settings
  * [Client] Render the tee being spectated after everyone else
  * [Client] Validate favorite skin name
  * [Client] Better text line spacing and console text selection
  * [Client] Fix automatic hammer on release with cl_dummy_control
  * [Client] Restart button when game needs to restart to
    apply settings
  * [Client] Improve performance of sounds
  * [Client] Improve graphics performance by copying less data
  * [Client] Improve player/tee settings
  * [Client] Fix wrong selection in vote menu when selected
    player leaves
  * [Client] Fix hook collision line when paused
  * [Client] Improved text outlines
  * [Editor] Differentiate between normal and checkpoint teles
  * [Editor] Editor buttons rework
  * [Editor] Allow resize of layers panel
  * [Editor] Shift-scroll to adjust special tile numbers
  * [Editor] Don't duplicate images when appending
  * [Editor] Warn about unused tiles
  * [Editor] Better text rendering in tele tiles
  * [Editor] Allow panning outside initial container
  * [Server] Add /tp x y to teleport to coordinates
  * [Server] Improve server-side auto demos
  * [Server] Add Sv_CommandInfo netmsg for autocompletion of
    chat commands
  * [Server] sv_vote_kick_delay fixes
  * [Server] Antibot improvements
  * [Server] Dynamically connect/disconnect debug dummies
  * [Server] Apply name bans to clans
  * [Server] Stop recording of demos on shutdown
  * [Server] Group list messages
  * [Server] Fix happy birthday broadcast
  * [Tools] Fix crashes on unknown UUID-based map items

OBS-URL: https://build.opensuse.org/request/show/1143838
OBS-URL: https://build.opensuse.org/package/show/games/ddnet?expand=0&rev=33
2024-02-06 20:34:50 +00:00

152 lines
4.5 KiB
RPMSpec

#
# spec file for package ddnet
#
# Copyright (c) 2024 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: 18.0.3
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: 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}
%if 0%{?sle_version} >= 150400 && 0%{?sle_version} < 160000 && 0%{?is_opensuse}
BuildRequires: gcc11
BuildRequires: gcc11-c++
%else
BuildRequires: gcc-c++
%endif
%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
%if 0%{?sle_version} >= 150400 && 0%{?sle_version} < 160000 && 0%{?is_opensuse}
export CC="gcc-11"
export CXX="g++-11"
%endif
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
# Fix for "error: failed to run custom build command for `link-cplusplus v1.0.6` - error occurred: Failed to find tool. Is `c++` installed?"
%make_build \
OPTFLAGS="%{optflags} -std=gnu++17"
%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
%files data
%{_datadir}/%{name}/
%files server
%{_mandir}/man6/DDNet-Server.6%{?ext_man}
%{_bindir}/DDNet-Server
%{_datadir}/icons/hicolor/*/apps/%{name}-server.png
%changelog