diff options
| author | JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> | 2021-09-24 08:04:17 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-23 17:04:17 -0700 |
| commit | 50fcd633dd5d6f3f9b085324ca95690204e7644b (patch) | |
| tree | 9a0d799472e8d377febf873695a2b0f4dbb95273 /ports/libideviceactivation | |
| parent | 8ba8f97d92b27ba8580af6d7e2a2af4b975e826d (diff) | |
| download | vcpkg-50fcd633dd5d6f3f9b085324ca95690204e7644b.tar.gz vcpkg-50fcd633dd5d6f3f9b085324ca95690204e7644b.zip | |
[libimobiledevice/libideviceactivation] update to latest version (#19962)
* [libimobiledevice/libideviceactivation/libzen] update to latest version
* update version
* update vcpkg.json format
* update version
* fix export target
* update version
* update version
* revert port libzen
* update version
* handle libzen conflict files
* delete vcpkg_cmake_config_fixup
* update version
Diffstat (limited to 'ports/libideviceactivation')
| -rw-r--r-- | ports/libideviceactivation/portfile.cmake | 15 | ||||
| -rw-r--r-- | ports/libideviceactivation/vcpkg.json | 9 |
2 files changed, 13 insertions, 11 deletions
diff --git a/ports/libideviceactivation/portfile.cmake b/ports/libideviceactivation/portfile.cmake index ad5bbfbcb..e438cba37 100644 --- a/ports/libideviceactivation/portfile.cmake +++ b/ports/libideviceactivation/portfile.cmake @@ -1,22 +1,21 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO libimobiledevice-win32/libideviceactivation
- REF fbe0476cfeddc2fc317ceb900eec12302c1d4c11 # v1.2.235 + REF fbe0476cfeddc2fc317ceb900eec12302c1d4c11 # v1.3.17 SHA512 18fdf1b42744da33e0f0f037e83a72b76cc0b63a0b712e78d9736adcde113582327f3712bc2bfa7b6fdb692465700a9106286f383fd7d11f9351ca7939b20e24
HEAD_REF msvc-master
)
-configure_file(${CURRENT_PORT_DIR}/CMakeLists.txt ${SOURCE_PATH}/CMakeLists.txt COPYONLY)
+configure_file("${CURRENT_PORT_DIR}/CMakeLists.txt" "${SOURCE_PATH}/CMakeLists.txt" COPYONLY)
-vcpkg_configure_cmake(
- SOURCE_PATH ${SOURCE_PATH}
- PREFER_NINJA
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
)
-vcpkg_install_cmake()
+vcpkg_cmake_install()
vcpkg_copy_pdbs()
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
# Handle copyright
-file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
+file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/ports/libideviceactivation/vcpkg.json b/ports/libideviceactivation/vcpkg.json index 6a864bd00..7eadb89a3 100644 --- a/ports/libideviceactivation/vcpkg.json +++ b/ports/libideviceactivation/vcpkg.json @@ -1,12 +1,15 @@ { "name": "libideviceactivation", - "version-string": "1.2.235", - "port-version": 1, + "version": "1.3.17", "description": "A library to handle the activation process of iOS devices", "dependencies": [ "curl", "libimobiledevice", "libplist", - "libxml2" + "libxml2", + { + "name": "vcpkg-cmake", + "host": true + } ] } |
