vcpkg/ports/highfive/portfile.cmake
Loic Gouarin 65d4be0cd8
[highfive] fix SHA of downloading patch (#29708)
* fix SHA

* Update version database

* add local patch from PR669 instead of download it

* Update version database

* update port-version

* update port-version

* Update highfive.json

* set patch from url as before

* Update version database

* add full_index in the url

* Update version database

---------

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
2023-02-27 12:35:03 -08:00

60 lines
1.9 KiB
CMake

# Must be removed on next release
vcpkg_download_distfile(CATCH2_PATCH
URLS https://github.com/BlueBrain/HighFive/commit/be9285ee4661ff4154830989899a2a050d6fbc64.patch?full_index=1
FILENAME ${PORT}-669-cd784f8d.diff
SHA512 cd784f8d4543cf1eaaba027a01d6042fe156e15d2ce59630ddf7dd2709c17d8ac8518954f6262de4d2ebfdf626467cdf6d16d072c17adb98b799d82ccda8792a
)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO BlueBrain/HighFive
REF v2.6.2
SHA512 80deb3d7f0b2e8e8c660ee37b189d1a4993e23b5ada30c72f3ef4fef80020f8564c8a5a507a34f891cec6c5db0d75d7c7de89040defaf91a3b1cec2018d1bf9e
HEAD_REF master
PATCHES
fix-error-C1128.patch
${CATCH2_PATCH}
)
vcpkg_check_features(
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
boost HIGHFIVE_USE_BOOST
tests HIGHFIVE_UNIT_TESTS
xtensor HIGHFIVE_USE_XTENSOR
eigen3 HIGHFIVE_USE_EIGEN
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
${FEATURE_OPTIONS}
-DHIGHFIVE_EXAMPLES=OFF
-DHIGHFIVE_BUILD_DOCS=OFF
)
set(add_bin "")
if("tests" IN_LIST FEATURES)
set(add_bin ADD_BIN_TO_PATH) # Seems to run tests as part of the build?
endif()
vcpkg_cmake_install(${add_bin})
if("tests" IN_LIST FEATURES)
vcpkg_copy_tools(
TOOL_NAMES
tests_high_five_base
tests_high_five_easy
tests_high_five_multi_dims
SEARCH_DIR "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/tests/unit" # Tools are not installed so release version tools are manually copied
)
endif()
# Use PACKAGE_NAME to avoid folder HighFive and highfive are exist at same time
vcpkg_cmake_config_fixup(PACKAGE_NAME HighFive CONFIG_PATH share/HighFive/CMake)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)