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

test

parent d946508a
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -6,6 +6,8 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

include(GNUInstallDirs)

set(LIBV "1.0.0")
set(Upstream_VERSION 1.0.0)

@@ -45,6 +47,13 @@ configure_file(config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)

include_directories(${CMAKE_CURRENT_BINARY_DIR})

install(
    FILES
        "${CMAKE_CURRENT_BINARY_DIR}/config.h"
    DESTINATION
        ${CMAKE_INSTALL_INCLUDEDIR}/htmlpp
)

#add_subdirectory(doc)
add_subdirectory(src)
add_subdirectory(test)

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
libhtmlpp (20260401) unstable; urgency=medium

  * Initial Debian packaging with multiarch support.

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

debian/control

0 → 100644
+28 −0
Original line number Diff line number Diff line
Source: libhtmlpp
Section: libs
Priority: optional
Maintainer: Jan Koester <jan.koester@tuxist.de>
Build-Depends: debhelper-compat (= 13), cmake (>= 3.23)
Standards-Version: 4.6.2
Homepage: https://github.com/tuxist/libhtmlpp
Rules-Requires-Root: no

Package: libhtmlpp1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: C++ HTML and CSS parsing library
 libhtmlpp is a C++ library providing HTML and CSS parsing, manipulation,
 and HTTP request handling functionality.

Package: libhtmlpp-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libhtmlpp1 (= ${binary:Version}), ${misc:Depends}
Description: C++ HTML and CSS parsing library - development files
 libhtmlpp is a C++ library providing HTML and CSS parsing, manipulation,
 and HTTP request handling functionality.
 .
 This package contains the headers, static library, and CMake config
 files needed for development.

debian/copyright

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

Files: *
Copyright: 2019 Jan Koester
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.
+4 −0
Original line number Diff line number Diff line
usr/include/htmlpp/
usr/lib/*/libhtmlpp.so
usr/lib/*/libhtmlpp-static.a
usr/lib/*/cmake/libhtmlpp/
Loading