Commit 87144f09 authored by jan.koester's avatar jan.koester
Browse files

debian

parent d7e95461
Loading
Loading
Loading
Loading

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
libcmdplus (1.0.0-1) unstable; urgency=low

  * Initial release.

 -- Jan Koester <jan.koester@gmx.net>  Tue, 01 Apr 2026 00:00:00 +0200

debian/control

0 → 100644
+20 −0
Original line number Diff line number Diff line
Source: libcmdplus
Section: libs
Priority: optional
Maintainer: Jan Koester <jan.koester@gmx.net>
Build-Depends: debhelper-compat (= 13), cmake (>= 3.25)
Standards-Version: 4.6.2
Homepage: https://intranet.tuxist.de/jan.koester/libcmdplus

Package: libcmdplus-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}
Description: C++ command line argument parsing library - development files
 libcmdplus is a C++ library for parsing command line arguments.
 It provides a simple interface to register, parse and query
 command line options with short and long key support.
 .
 This package contains the static library, headers and CMake
 config files needed for development.
 No newline at end of file

debian/copyright

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

Files: *
Copyright: 2021-2024 Jan Koester <jan.koester@gmx.net>
License: BSD-3-Clause

License: BSD-3-Clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 .
 1. Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
 .
 3. Neither the name of the copyright holder nor the names of its
    contributors may be used to endorse or promote products derived from
    this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+3 −0
Original line number Diff line number Diff line
usr/lib/*.a
usr/lib/cmake/libcmdplus/*
usr/include/cmdplus/*

debian/rules

0 → 100755
+7 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- -DCMAKE_INSTALL_PREFIX=/usr
Loading