diff options
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/minizip-ng/portfile.cmake | 26 | ||||
| -rw-r--r-- | ports/minizip-ng/vcpkg.json | 25 |
2 files changed, 51 insertions, 0 deletions
diff --git a/ports/minizip-ng/portfile.cmake b/ports/minizip-ng/portfile.cmake new file mode 100644 index 000000000..d7a27e11e --- /dev/null +++ b/ports/minizip-ng/portfile.cmake @@ -0,0 +1,26 @@ +vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO zlib-ng/minizip-ng
+ REF 3.0.1
+ SHA512 98c9bdcea79a88a2dd69cec6c49f8565edf78ab9cddbf0e85e08b049b300b187f176bf57d5a894bf777bec0a097e46ecc05f78dab9cd5726fd473ffd8718dce0
+ HEAD_REF master
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ DISABLE_PARALLEL_CONFIGURE
+ OPTIONS
+ -DMZ_PROJECT_SUFFIX:STRING=-ng
+)
+
+vcpkg_cmake_install()
+
+vcpkg_fixup_pkgconfig()
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/${PORT})
+vcpkg_copy_pdbs()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+configure_file("${SOURCE_PATH}/LICENSE" "${CURRENT_PACKAGES_DIR}/share/minizip-ng/copyright" COPYONLY)
diff --git a/ports/minizip-ng/vcpkg.json b/ports/minizip-ng/vcpkg.json new file mode 100644 index 000000000..35ee5fa6b --- /dev/null +++ b/ports/minizip-ng/vcpkg.json @@ -0,0 +1,25 @@ +{ + "name": "minizip-ng", + "version": "3.0.1", + "description": "minizip-ng is a zip manipulation library written in C that is supported on Windows, macOS, and Linux.", + "homepage": "https://github.com/zlib-ng/minizip-ng", + "supports": "!uwp", + "dependencies": [ + "bzip2", + "liblzma", + { + "name": "openssl", + "platform": "linux" + }, + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "zlib", + "zstd" + ] +} |
