2020-08-08 06:38:18 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO KDE/kcompletion
|
2021-12-03 11:49:12 +08:00
|
|
|
REF v5.88.0
|
|
|
|
SHA512 fc9dc7dde3d515523417308b8c73717c1ae628b3cb6276ac7e229a300ff61231d06bf02caba1d5ac77f2a1a85d21705e2a0830963390870baa58417d124aaa1b
|
2020-08-08 06:38:18 +08:00
|
|
|
HEAD_REF master
|
|
|
|
)
|
|
|
|
|
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-11-26 15:36:46 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2020-08-08 06:38:18 +08:00
|
|
|
OPTIONS
|
2021-07-28 08:02:50 +08:00
|
|
|
-DBUILD_TESTING=OFF
|
|
|
|
-DBUILD_DESIGNERPLUGIN=OFF
|
2020-08-08 06:38:18 +08:00
|
|
|
)
|
|
|
|
|
2021-11-26 15:36:46 +08:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5Completion CONFIG_PATH lib/cmake/KF5Completion)
|
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-11-26 15:36:46 +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-11-26 15:36:46 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
|
2021-12-03 11:49:12 +08:00
|
|
|
|