Commit dbc4d15b authored by jan.koester's avatar jan.koester
Browse files

test

parent 9fc43a28
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
project(gameinfoplus CXX)
cmake_minimum_required(VERSION 3.5)

include(GNUInstallDirs)

find_package(libnetplus REQUIRED)

set(LIBV "1")

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
libgameinfoplus (20260411+1) unstable; urgency=medium

  * Initial Debian packaging with libgameinfoplus1 and libgameinfoplus-dev

 -- Jan Koester <jan.koester@tuxist.de>  Sat, 11 Apr 2026 00:00:00 +0200

debian/control

0 → 100644
+29 −0
Original line number Diff line number Diff line
Source: libgameinfoplus
Section: libs
Priority: optional
Maintainer: Jan Koester <jan.koester@tuxist.de>
Build-Depends: debhelper-compat (= 13), cmake (>= 3.5),
 libnetplus-dev, pkg-config
Standards-Version: 4.6.2
Rules-Requires-Root: no

Package: libgameinfoplus1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: C++ game server query library
 libgameinfoplus is a C++ library for querying game server
 information via the A2S (All Source Query) protocol. Supports
 Half-Life Dedicated Server (HLDS) and Source engine servers.

Package: libgameinfoplus-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libgameinfoplus1 (= ${binary:Version}), ${misc:Depends}
Description: C++ game server query library - development files
 libgameinfoplus is a C++ library for querying game server
 information via the A2S (All Source Query) protocol.
 .
 This package contains the headers and CMake config files
 needed for development.

debian/copyright

0 → 100644
+22 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: libgameinfoplus
Upstream-Contact: Jan Koester <jan.koester@tuxist.de>

Files: *
Copyright: 2023 Jan Koester
License: LGPL-2.1

License: LGPL-2.1
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 .
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.
 .
 On Debian systems, the complete text of the GNU Lesser General
 Public License version 2.1 can be found in
 "/usr/share/common-licenses/LGPL-2.1".
+3 −0
Original line number Diff line number Diff line
usr/include/gameinfoplus/
usr/lib/*/libgameinfoplus.so
usr/lib/*/cmake/gameinfoplus/
Loading