aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>2019-05-07 22:51:00 -0700
committerGriffin Downs <35574547+grdowns@users.noreply.github.com>2019-05-07 22:51:00 -0700
commit5121e7149e785fb7d8455b3f380b829349e9e4a6 (patch)
tree856eb6b3033ffc3be521b773ed270bd285c1afcc
parent6bbecf378821d3bc6d0c5be1548fa638a24dbb07 (diff)
downloadvcpkg-5121e7149e785fb7d8455b3f380b829349e9e4a6.tar.gz
vcpkg-5121e7149e785fb7d8455b3f380b829349e9e4a6.zip
[minhook] Add new port (#6333)
* [minhook] Add new port * Download cmake support as patch * Move architecture check to before work is done * Check in install destination patchl Remove config
-rw-r--r--ports/minhook/CONTROL3
-rw-r--r--ports/minhook/install-destination.patch22
-rw-r--r--ports/minhook/portfile.cmake49
3 files changed, 74 insertions, 0 deletions
diff --git a/ports/minhook/CONTROL b/ports/minhook/CONTROL
new file mode 100644
index 000000000..95209891b
--- /dev/null
+++ b/ports/minhook/CONTROL
@@ -0,0 +1,3 @@
+Source: minhook
+Version: 1.3.3
+Description: The Minimalistic x86/x64 API Hooking Library for Windows. \ No newline at end of file
diff --git a/ports/minhook/install-destination.patch b/ports/minhook/install-destination.patch
new file mode 100644
index 000000000..13f3dc379
--- /dev/null
+++ b/ports/minhook/install-destination.patch
@@ -0,0 +1,22 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index df947af..6a894d8 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -113,7 +113,7 @@ install(
+ "${CMAKE_CURRENT_BINARY_DIR}/minhook-config.cmake"
+ "${CMAKE_CURRENT_BINARY_DIR}/minhook-config-version.cmake"
+ DESTINATION
+- "lib/minhook"
++ share/minhook
+ )
+
+ ###################
+@@ -133,7 +133,7 @@ install(
+ NAMESPACE
+ minhook::
+ DESTINATION
+- "lib/minhook"
++ share/minhook
+ )
+
+ install(
diff --git a/ports/minhook/portfile.cmake b/ports/minhook/portfile.cmake
new file mode 100644
index 000000000..13779a338
--- /dev/null
+++ b/ports/minhook/portfile.cmake
@@ -0,0 +1,49 @@
+if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
+ message(FATAL_ERROR "${PORT} does not currently support UWP")
+endif()
+
+include(vcpkg_common_functions)
+
+if (VCPKG_TARGET_ARCHITECTURE MATCHES "x86")
+ set(BUILD_ARCH "Win32")
+ set(OUTPUT_DIR "Win32")
+elseif (VCPKG_TARGET_ARCHITECTURE MATCHES "x64")
+ set(BUILD_ARCH "x64")
+ set(OUTPUT_DIR "Win64")
+else()
+ message(FATAL_ERROR "Unsupported architecture: ${VCPKG_TARGET_ARCHITECTURE}")
+endif()
+
+# Download files to enable CMake support for minhook - Adds CMakeLists.txt and minhook-config.cmake.in
+vcpkg_download_distfile(
+ CMAKE_SUPPORT_PATCH
+ URLS https://github.com/TsudaKageyu/minhook/commit/3f2e34976c1685ee372a09f54c0c8c8f4240ef90.patch
+ FILENAME minhook-cmake-support.patch
+ SHA512 5f353b167e2c31e5e06258420c78fbae0095368cf687ff06a350d6b69b30476824785dde5dbcea3e30ff827e7cdb293727a73e6b1e6875f00aa891b2980c3877
+)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO TsudaKageyu/minhook
+ REF v1.3.3
+ SHA512 9f10c92a926a06cde1e4092b664a3aab00477e8b9f20cee54e1d2b3747fad91043d199a2753f7e083497816bbefc5d75d9162d2098dd044420dbca555e80b060
+ HEAD_REF master
+ PATCHES
+ "${CMAKE_SUPPORT_PATCH}"
+ install-destination.patch
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+)
+
+vcpkg_install_cmake()
+
+vcpkg_copy_pdbs()
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+file(COPY ${CURRENT_PACKAGES_DIR}/debug/share/${PORT}/minhook-targets-debug.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
+file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)