aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/kf5xmlgui
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/kf5xmlgui')
-rw-r--r--vcpkg/ports/kf5xmlgui/portfile.cmake47
-rw-r--r--vcpkg/ports/kf5xmlgui/vcpkg.json50
2 files changed, 97 insertions, 0 deletions
diff --git a/vcpkg/ports/kf5xmlgui/portfile.cmake b/vcpkg/ports/kf5xmlgui/portfile.cmake
new file mode 100644
index 0000000..3142785
--- /dev/null
+++ b/vcpkg/ports/kf5xmlgui/portfile.cmake
@@ -0,0 +1,47 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/kxmlgui
+ REF v5.98.0
+ SHA512 a1dcbe8ba1b5a227e3fed07933cdfa26557a10cce3beaf41fde0a9ac4808dd17882ad6362fc4108bc6c3953ed58375dd71a3afa4cac445a798acae8b4eac56e4
+ HEAD_REF master
+)
+
+vcpkg_check_features(
+ OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ designerplugin BUILD_DESIGNERPLUGIN
+ )
+
+# Prevent KDEClangFormat from writing to source effectively blocking parallel configure
+file(WRITE "${SOURCE_PATH}/.clang-format" "DisableFormat: true\nSortIncludes: false\n")
+
+vcpkg_cmake_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 KF5XmlGui CONFIG_PATH lib/cmake/KF5XmlGui)
+vcpkg_copy_pdbs()
+
+if (VCPKG_TARGET_IS_WINDOWS)
+ vcpkg_copy_tools(
+ TOOL_NAMES ksendbugmail
+ 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(GLOB LICENSE_FILES "${SOURCE_PATH}/LICENSES/*")
+vcpkg_install_copyright(FILE_LIST ${LICENSE_FILES})
+
diff --git a/vcpkg/ports/kf5xmlgui/vcpkg.json b/vcpkg/ports/kf5xmlgui/vcpkg.json
new file mode 100644
index 0000000..6de89bf
--- /dev/null
+++ b/vcpkg/ports/kf5xmlgui/vcpkg.json
@@ -0,0 +1,50 @@
+{
+ "name": "kf5xmlgui",
+ "version": "5.98.0",
+ "description": "Framework for managing menu and toolbar actions",
+ "homepage": "https://api.kde.org/frameworks/kxmlgui/html/index.html",
+ "dependencies": [
+ "ecm",
+ "gettext",
+ {
+ "name": "gettext",
+ "host": true,
+ "features": [
+ "tools"
+ ]
+ },
+ "kf5archive",
+ "kf5config",
+ "kf5configwidgets",
+ "kf5coreaddons",
+ {
+ "name": "kf5globalaccel",
+ "platform": "!windows & !osx & !android"
+ },
+ "kf5guiaddons",
+ "kf5i18n",
+ "kf5iconthemes",
+ "kf5itemviews",
+ "kf5widgetsaddons",
+ "kf5windowsystem",
+ {
+ "name": "libiconv",
+ "platform": "windows & static"
+ },
+ "qt5-base",
+ "qt5-tools",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ],
+ "features": {
+ "designerplugin": {
+ "description": "Enables a Qt Designer plugin"
+ }
+ }
+}