mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 18:49:01 +08:00
02fc26bbe9
* Add kf5newstuff port * [kf5newstuff] match the lower case * [kf5*] update to 5.75.0 * [kf5newstuff] convert manifest to JSON * [kf5newstuff] use gettext port * [kf5newstuff] only remove what's needed * [kf5newstuff] wrap paths in quotes * [kf5newstuff] remove unused options * [kf5newstuff] use current spec * [kf5newstuff] use KDE_INSTALL_QMLDIR instead of manual renaming * [kf5newstuff] update to 5.84 * [kf5newstuff] fix versioning * [kf5newstuff] update versions * [kf5newstuff] fix static builds * [kf5newstuff] update versions * [kf5newstuff] fix tool handling on macOS * [kf5newstuff] update versions * [kf5newstuff] fix static builds - continued * [kf5newstuff] update versions * [kf5newstuff] reduce patch size 1/3 Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [kf5newstuff] reduce patch size 2/3 Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [kf5newstuff] reduce patch size 3/3 Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [kf5newstuff] update versions Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
39 lines
1.4 KiB
CMake
39 lines
1.4 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO KDE/knewstuff
|
|
REF v5.84.0
|
|
SHA512 107f8c7915f5a7656ed729d03b59e5f53f8751d771487b96e517358f1149801981e27d5cafdf86f759be539305fc8f847c51a28a35947766200cc912072f5c8d
|
|
HEAD_REF master
|
|
PATCHES
|
|
fix_static_builds.patch # https://invent.kde.org/frameworks/knewstuff/-/merge_requests/139
|
|
fix_static_builds2.patch # https://invent.kde.org/frameworks/knewstuff/-/merge_requests/140
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
DISABLE_PARALLEL_CONFIGURE
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DBUILD_TESTING=OFF
|
|
-DKDE_INSTALL_QMLDIR=qml
|
|
-DBUNDLE_INSTALL_DIR=bin
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5NewStuff CONFIG_PATH lib/cmake/KF5NewStuff DO_NOT_DELETE_PARENT_CONFIG_PATH)
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5NewStuffCore CONFIG_PATH lib/cmake/KF5NewStuffCore DO_NOT_DELETE_PARENT_CONFIG_PATH)
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5NewStuffQuick CONFIG_PATH lib/cmake/KF5NewStuffQuick)
|
|
vcpkg_copy_pdbs()
|
|
|
|
vcpkg_copy_tools(
|
|
TOOL_NAMES knewstuff-dialog
|
|
AUTO_CLEAN
|
|
)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
endif()
|
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright") |