mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-01 05:27:52 +08:00
1a13ae06ec
* Add kf5iconthemes port * kf5iconthemes: add missing PATCH directive * Fix Kf5Iconthemes for windows: * [kf5*] update to 5.75.0 * [kf5iconthemes] convert CONTROL to manifest * [kf5iconthemes] update to current spec * [kf5iconthemes] use semVer * [kf5iconthemes] remove extraneous options * [kf5iconthemes] update to 5.84 * [kf5iconthemes] use vcpkg_copy_tools() * [kf5iconthemes] only remove what's needed * [kf5iconthemes] wrap paths in quotes * [kf5iconthemes] update versions * [kf5iconthemes] DISABLE_PARALLEL_CONFIGURE * [kf5iconthemes] update versions * [kf5iconthemes] Add support for static builds * [kf5iconthemes] update versions * [kf5iconthemes] reformat vcpkg.json * [kf5iconthemes] update versions * [kf5iconthemes] add Qt Designer plugin feature * [kf5iconthemes] update versions * [kf5iconthemes] add libiconv dependency * [kf5iconthemes] update versions * [kf5iconthemes] fix Windows Static builds * [kf5iconthemes] update versions * [kf5iconthemes] add PACKAGE_NAME to vcpkg_cmake_config_fixup * [kf5iconthemes] update versions * [kf5iconthemes] rename patch files * [kf5iconthemes] libiconv patches only for windows static builds * [kf5iconthemes] update versions * [kf5iconthemes] fix identation * [kf5iconthemes] update versions * [kf5iconthemes] cleanup, iconv was fixed in kf5i18n * [kf5iconthemes] update versions * [kf5iconthemes] use generic, non-semver versioning Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [kf5iconthemes] update versions Co-authored-by: Kuntal Majumder <hellozee@disroot.org> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
49 lines
1.3 KiB
CMake
49 lines
1.3 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO KDE/kiconthemes
|
|
REF v5.84.0
|
|
SHA512 ca5645d6e4fde4f60c6f16c911539f4056060cc22afae275459632bc7069352b068b1727eb75b898d319e6eef3df9ddc35d8e22d4c1d05a657b112378e56731e
|
|
HEAD_REF master
|
|
PATCHES
|
|
fix_config_cmake.patch
|
|
)
|
|
|
|
vcpkg_check_features(
|
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
designerplugin BUILD_DESIGNERPLUGIN
|
|
)
|
|
|
|
vcpkg_cmake_configure(
|
|
DISABLE_PARALLEL_CONFIGURE
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DBUILD_TESTING=OFF
|
|
-DKDE_INSTALL_PLUGINDIR=plugins
|
|
-DKDE_INSTALL_QTPLUGINDIR=plugins
|
|
${FEATURE_OPTIONS}
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5IconThemes CONFIG_PATH lib/cmake/KF5IconThemes)
|
|
vcpkg_copy_pdbs()
|
|
|
|
vcpkg_copy_tools(
|
|
TOOL_NAMES kiconfinder5
|
|
AUTO_CLEAN
|
|
)
|
|
|
|
if(VCPKG_TARGET_IS_OSX)
|
|
vcpkg_copy_tools(
|
|
TOOL_NAMES ksvg2icns
|
|
AUTO_CLEAN
|
|
)
|
|
endif()
|
|
|
|
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") |