2020-08-08 06:38:18 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO KDE/kcoreaddons
|
2021-07-28 08:02:50 +08:00
|
|
|
REF v5.84.0
|
|
|
|
SHA512 58a802d03bea135c192265651540f9f87066b20ee4af620a94a874ec3992c5e734d1ab1e4ccb082de97389fa3479fd3672ec586c3dd36c9b4a5422c7be98d119
|
2021-09-02 02:29:13 +08:00
|
|
|
PATCHES
|
|
|
|
fix_static_build.patch # https://invent.kde.org/frameworks/kcoreaddons/-/merge_requests/122
|
|
|
|
fix_cmake_config.patch # https://invent.kde.org/frameworks/kcoreaddons/-/merge_requests/129
|
2020-08-08 06:38:18 +08:00
|
|
|
)
|
|
|
|
|
2021-09-02 02:29:13 +08:00
|
|
|
vcpkg_cmake_configure(
|
2020-08-08 06:38:18 +08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
2021-06-25 04:04:57 +08:00
|
|
|
DISABLE_PARALLEL_CONFIGURE
|
2020-08-08 06:38:18 +08:00
|
|
|
OPTIONS
|
|
|
|
-DBUILD_TESTING=OFF
|
|
|
|
)
|
|
|
|
|
2021-09-02 02:29:13 +08:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5CoreAddons CONFIG_PATH lib/cmake/KF5CoreAddons)
|
2020-08-08 06:38:18 +08:00
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
|
|
|
vcpkg_copy_tools(
|
|
|
|
TOOL_NAMES desktoptojson
|
|
|
|
AUTO_CLEAN
|
|
|
|
)
|
|
|
|
|
2021-09-02 02:29:13 +08:00
|
|
|
file(APPEND "${CURRENT_PACKAGES_DIR}/tools/${PORT}/qt.conf" "Data = ../../share")
|
2020-08-08 06:38:18 +08:00
|
|
|
|
2021-09-02 02:29:13 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
2020-08-08 06:38:18 +08:00
|
|
|
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
|
|
endif()
|
|
|
|
|
2021-09-02 02:29:13 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
|