diff options
| author | Prateek Chokse <prateek.chokse@gmail.com> | 2021-05-19 04:16:03 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 15:46:03 -0700 |
| commit | f68f30c1e1aebe53081d722e8add85cd85ef8f11 (patch) | |
| tree | 0f8a85c8e8010d9d0733cee491b18433daffa82e /ports | |
| parent | c1d7e285cc8a81e4f6a92d5935f0d43c5692f1d8 (diff) | |
| download | vcpkg-f68f30c1e1aebe53081d722e8add85cd85ef8f11.tar.gz vcpkg-f68f30c1e1aebe53081d722e8add85cd85ef8f11.zip | |
[minizip-ng] made cmake installs relative (#17685)
* [minizip-ng] made cmake installs relative
* [minizip-ng] update version
* Update versions/m-/minizip-ng.json
* formated ports/minzip-ng/vcpkg.json
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/minizip-ng/Modify-header-file-path.patch | 10 | ||||
| -rw-r--r-- | ports/minizip-ng/portfile.cmake | 7 | ||||
| -rw-r--r-- | ports/minizip-ng/vcpkg.json | 3 |
3 files changed, 10 insertions, 10 deletions
diff --git a/ports/minizip-ng/Modify-header-file-path.patch b/ports/minizip-ng/Modify-header-file-path.patch index 54299bac0..ac1c6fee8 100644 --- a/ports/minizip-ng/Modify-header-file-path.patch +++ b/ports/minizip-ng/Modify-header-file-path.patch @@ -4,10 +4,10 @@ index 9ef8023..ec1ee55 100644 +++ b/CMakeLists.txt
@@ -81,7 +81,7 @@ include(FeatureSummary)
- set(INSTALL_BIN_DIR ${CMAKE_INSTALL_FULL_BINDIR} CACHE PATH "Installation directory for executables")
- set(INSTALL_LIB_DIR ${CMAKE_INSTALL_FULL_LIBDIR} CACHE PATH "Installation directory for libraries")
--set(INSTALL_INC_DIR ${CMAKE_INSTALL_FULL_INCLUDEDIR} CACHE PATH "Installation directory for headers")
-+set(INSTALL_INC_DIR ${CMAKE_INSTALL_FULL_INCLUDEDIR}/minizip-ng CACHE PATH "Installation directory for headers")
- set(INSTALL_MAN_DIR ${CMAKE_INSTALL_FULL_MANDIR} CACHE PATH "Installation directory for manual pages")
+ set(INSTALL_BIN_DIR ${CMAKE_INSTALL_BINDIR} CACHE PATH "Installation directory for executables")
+ set(INSTALL_LIB_DIR ${CMAKE_INSTALL_LIBDIR} CACHE PATH "Installation directory for libraries")
+-set(INSTALL_INC_DIR ${CMAKE_INSTALL_INCLUDEDIR} CACHE PATH "Installation directory for headers")
++set(INSTALL_INC_DIR ${CMAKE_INSTALL_INCLUDEDIR}/minizip-ng CACHE PATH "Installation directory for headers")
+ set(INSTALL_MAN_DIR ${CMAKE_INSTALL_MANDIR} CACHE PATH "Installation directory for manual pages")
set(STDLIB_DEF)
diff --git a/ports/minizip-ng/portfile.cmake b/ports/minizip-ng/portfile.cmake index 6d6cd7168..69ccb97af 100644 --- a/ports/minizip-ng/portfile.cmake +++ b/ports/minizip-ng/portfile.cmake @@ -1,10 +1,11 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO zlib-ng/minizip-ng
- REF 3.0.1
- SHA512 98c9bdcea79a88a2dd69cec6c49f8565edf78ab9cddbf0e85e08b049b300b187f176bf57d5a894bf777bec0a097e46ecc05f78dab9cd5726fd473ffd8718dce0
+ REF 3.0.2
+ SHA512 eee4d35d273ab0a32972b119c8faabd8c242e2d9f506fab0dd21fdd24c78b932c01bf7f15e9cf7c452776fc4c2e27a5ff09e376adb7a706336d11114929182fc
HEAD_REF master
- PATCHES Modify-header-file-path.patch
+ PATCHES
+ Modify-header-file-path.patch
)
vcpkg_cmake_configure(
diff --git a/ports/minizip-ng/vcpkg.json b/ports/minizip-ng/vcpkg.json index b40124581..33f77dd29 100644 --- a/ports/minizip-ng/vcpkg.json +++ b/ports/minizip-ng/vcpkg.json @@ -1,7 +1,6 @@ { "name": "minizip-ng", - "version": "3.0.1", - "port-version": 1, + "version": "3.0.2", "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", |
