2020-08-08 06:38:18 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO KDE/kguiaddons
|
2021-12-03 11:49:12 +08:00
|
|
|
REF v5.88.0
|
|
|
|
SHA512 91aeb4da44814c574016205f2684fc41a41a5c54c0ee1c1cdb15e4b089abc025877e1bae6a3504240bd7561ab6eb766e40d1ae29b1411f43256cad5c68625aa1
|
2020-08-08 06:38:18 +08:00
|
|
|
HEAD_REF master
|
2021-08-31 01:04:04 +08:00
|
|
|
PATCHES
|
|
|
|
fix_cmake.patch # https://github.com/microsoft/vcpkg/issues/17607#issuecomment-831518812
|
2020-08-08 06:38:18 +08:00
|
|
|
)
|
|
|
|
|
2021-05-21 16:30:43 +08:00
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
|
|
FEATURES
|
|
|
|
wayland WITH_WAYLAND
|
|
|
|
)
|
|
|
|
|
|
|
|
if("wayland" IN_LIST FEATURES AND NOT VCPKG_TARGET_IS_LINUX)
|
|
|
|
message(FATAL_ERROR "Feature wayland is only supported on Linux.")
|
|
|
|
endif()
|
|
|
|
|
2021-09-17 23:20:35 +08:00
|
|
|
# Prevent KDEClangFormat from writing to source effectively blocking parallel configure
|
|
|
|
file(WRITE ${SOURCE_PATH}/.clang-format "DisableFormat: true\nSortIncludes: false\n")
|
|
|
|
|
2021-08-31 01:04:04 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2020-08-08 06:38:18 +08:00
|
|
|
OPTIONS
|
|
|
|
-DBUILD_TESTING=OFF
|
2021-05-21 16:30:43 +08:00
|
|
|
-DQtWaylandScanner_EXECUTABLE=${CURRENT_INSTALLED_DIR}/tools/qt5-wayland/bin/qtwaylandscanner
|
|
|
|
${FEATURE_OPTIONS}
|
2021-08-31 01:04:04 +08:00
|
|
|
MAYBE_UNUSED_VARIABLES
|
|
|
|
QtWaylandScanner_EXECUTABLE
|
2020-08-08 06:38:18 +08:00
|
|
|
)
|
|
|
|
|
2021-08-31 01:04:04 +08:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5GuiAddons CONFIG_PATH lib/cmake/KF5GuiAddons)
|
2020-08-08 06:38:18 +08:00
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2021-04-13 01:15:11 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
|
|
endif()
|
|
|
|
|
2021-08-31 01:04:04 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
2021-04-13 01:15:11 +08:00
|
|
|
|
2021-08-31 01:04:04 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
|
2021-11-26 15:36:46 +08:00
|
|
|
|
2021-12-03 11:49:12 +08:00
|
|
|
|