WIP: [libzippp] New port: C++ wrapper for libzip (#6801)

* [libzippp] New port: C++ wrapper for libzip

Closes #6600

* [libzippp] Fixed lookup of included libraries

* [libzippp] Build system replacement

* [libzippp] Add find_dependency(LIBZIP) to config file

* [libzippp] Use upstream CMake
This commit is contained in:
Philipp Hasper 2019-07-22 19:40:11 +02:00 committed by Victor Romero
parent 36112264bc
commit 042f96413f
2 changed files with 31 additions and 0 deletions

4
ports/libzippp/CONTROL Normal file
View File

@ -0,0 +1,4 @@
Source: libzippp
Version: 2019-07-22
Description: Simple basic C++ wrapper around the libzip library. It is meant to be a portable and easy-to-use library for ZIP handling
Build-Depends: zlib, libzip[bzip2]

View File

@ -0,0 +1,27 @@
include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO ctabin/libzippp
REF be75a3413b648a3264e94a2c1921c83081dec1e0
SHA512 86c6040bbaea0817486218e96c4d230a328e3560ada41861fbd18d78faa085b158199318d633085e616509084082bf29d6f97afdd2d2dfbc6b843dfbf6a20c85
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DBUILD_TESTS=OFF
OPTIONS_DEBUG
-DINSTALL_HEADERS=OFF
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH "share/libzippp")
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENCE DESTINATION ${CURRENT_PACKAGES_DIR}/share/libzippp RENAME copyright)