2018-12-13 21:05:21 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO billyquith/ponder
|
|
|
|
REF 3.0.0
|
|
|
|
SHA512 b6ba1ce9fa0584b16085c56afb70e31f204a66b57193c1a4225bfe18abbda561bb71b3279dd0a4f1b21867b985ef5ce78c8e360f3fc654c61ce61c44d35c5f38
|
|
|
|
HEAD_REF master
|
|
|
|
PATCHES
|
|
|
|
no-install-unused.patch
|
2020-05-27 13:38:56 +08:00
|
|
|
github-121.patch
|
2018-12-13 21:05:21 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA
|
2019-02-02 15:38:44 +08:00
|
|
|
DISABLE_PARALLEL_CONFIGURE
|
2018-12-13 21:05:21 +08:00
|
|
|
OPTIONS
|
|
|
|
-DUSES_RAPIDJSON=OFF
|
|
|
|
-DUSES_RAPIDXML=OFF
|
|
|
|
-DBUILD_TEST=OFF
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
2018-12-20 12:44:22 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/${PORT}/cmake)
|
2018-12-13 21:05:21 +08:00
|
|
|
|
|
|
|
file(REMOVE_RECURSE
|
|
|
|
${CURRENT_PACKAGES_DIR}/debug/include
|
2018-12-20 12:44:22 +08:00
|
|
|
${CURRENT_PACKAGES_DIR}/debug/lib/${PORT}
|
|
|
|
${CURRENT_PACKAGES_DIR}/lib/${PORT})
|
|
|
|
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/include/${PORT}/config.hpp _contents)
|
|
|
|
string(REPLACE "ifndef PONDER_STATIC" "if 0 //ifndef PONDER_STATIC" _contents "${_contents}")
|
|
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/include/${PORT}/config.hpp "${_contents}")
|
|
|
|
endif()
|
2018-12-13 21:05:21 +08:00
|
|
|
|
|
|
|
# Handle copyright
|
2018-12-20 12:44:22 +08:00
|
|
|
configure_file(${SOURCE_PATH}/COPYING.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
|
2021-10-28 06:19:28 +08:00
|
|
|
|
|
|
|
vcpkg_fixup_pkgconfig()
|