mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 23:19:00 +08:00
a868d7ed21
* [kf5*] Update to 5.88 * [kf5*] Update versions * [kf5*] fix QML plugins location diff --git a/ports/kf5i18n/portfile.cmake b/ports/kf5i18n/portfile.cmake index 610182e49..5a0fd5e21 100644 --- a/ports/kf5i18n/portfile.cmake +++ b/ports/kf5i18n/portfile.cmake @@ -20,6 +20,7 @@ vcpkg_cmake_configure( OPTIONS -DBUILD_TESTING=OFF -DKDE_INSTALL_PLUGINDIR=plugins + -DKDE_INSTALL_QMLDIR=qml -DPYTHON_EXECUTABLE=${PYTHON3} ) diff --git a/ports/kf5notifications/portfile.cmake b/ports/kf5notifications/portfile.cmake index e41fee015..bc93cf6af 100644 --- a/ports/kf5notifications/portfile.cmake +++ b/ports/kf5notifications/portfile.cmake @@ -13,6 +13,7 @@ vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_TESTING=OFF + -DKDE_INSTALL_QMLDIR=qml ) vcpkg_cmake_install() diff --git a/ports/kf5sonnet/portfile.cmake b/ports/kf5sonnet/portfile.cmake index 7e2820ce4..a2d1adfcc 100644 --- a/ports/kf5sonnet/portfile.cmake +++ b/ports/kf5sonnet/portfile.cmake @@ -16,6 +16,7 @@ vcpkg_cmake_configure( -DBUILD_EXAMPLES=OFF -DKDE_INSTALL_PLUGINDIR=plugins -DKDE_INSTALL_QTPLUGINDIR=plugins + -DKDE_INSTALL_QMLDIR=qml ) vcpkg_add_to_path(PREPEND "${CURRENT_INSTALLED_DIR}/bin") * [kf5*] update versions * [ecm] fix ECMGenerateQmlTypes * [ecm] update version
70 lines
2.3 KiB
CMake
70 lines
2.3 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO KDE/solid
|
|
REF v5.88.0
|
|
SHA512 2d39bac7ff1d5202c494b400974f454041b34aaa56a203340de2ef390e14c29131aaaf9a32766062c826aee7484f75047bacd87894c3ccf9289ec9b2272721f1
|
|
HEAD_REF master
|
|
PATCHES
|
|
fix-libmount.patch
|
|
)
|
|
|
|
if(VCPKG_TARGET_IS_OSX)
|
|
# On Darwin platform, the bundled version of 'bison' may be too old (< 3.0).
|
|
vcpkg_find_acquire_program(BISON)
|
|
execute_process(
|
|
COMMAND ${BISON} --version
|
|
OUTPUT_VARIABLE BISON_OUTPUT
|
|
)
|
|
string(REGEX MATCH "([0-9]+)\\.([0-9]+)\\.([0-9]+)" BISON_VERSION "${BISON_OUTPUT}")
|
|
set(BISON_MAJOR ${CMAKE_MATCH_1})
|
|
set(BISON_MINOR ${CMAKE_MATCH_2})
|
|
message(STATUS "Using bison: ${BISON_MAJOR}.${BISON_MINOR}.${CMAKE_MATCH_3}")
|
|
if(NOT (BISON_MAJOR GREATER_EQUAL 3 AND BISON_MINOR GREATER_EQUAL 0))
|
|
message(WARNING "${PORT} requires bison version greater than one provided by macOS, please use \`brew install bison\` to install a newer bison.")
|
|
endif()
|
|
endif()
|
|
|
|
vcpkg_find_acquire_program(BISON)
|
|
vcpkg_find_acquire_program(FLEX)
|
|
|
|
get_filename_component(FLEX_DIR "${FLEX}" DIRECTORY )
|
|
get_filename_component(BISON_DIR "${BISON}" DIRECTORY )
|
|
|
|
vcpkg_add_to_path(PREPEND "${FLEX_DIR}")
|
|
vcpkg_add_to_path(PREPEND "${BISON_DIR}")
|
|
|
|
# Prevent KDEClangFormat from writing to source effectively blocking parallel configure
|
|
file(WRITE ${SOURCE_PATH}/.clang-format "DisableFormat: true\nSortIncludes: false\n")
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
INVERTED_FEATURES
|
|
"libmount" CMAKE_DISABLE_FIND_PACKAGE_LibMount
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DBUILD_TESTING=OFF
|
|
-DKDE_INSTALL_QMLDIR=qml
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5Solid CONFIG_PATH lib/cmake/KF5Solid)
|
|
vcpkg_copy_pdbs()
|
|
|
|
vcpkg_copy_tools(
|
|
TOOL_NAMES solid-hardware5
|
|
AUTO_CLEAN
|
|
)
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
|
|
|
|
|