aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/kf5configwidgets
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/kf5configwidgets')
-rw-r--r--vcpkg/ports/kf5configwidgets/portfile.cmake41
-rw-r--r--vcpkg/ports/kf5configwidgets/vcpkg.json41
2 files changed, 82 insertions, 0 deletions
diff --git a/vcpkg/ports/kf5configwidgets/portfile.cmake b/vcpkg/ports/kf5configwidgets/portfile.cmake
new file mode 100644
index 0000000..ff7b0e3
--- /dev/null
+++ b/vcpkg/ports/kf5configwidgets/portfile.cmake
@@ -0,0 +1,41 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/kconfigwidgets
+ REF v5.98.0
+ SHA512 fbc113d41b13c190a07915a14443d50b67182e52a52ce0258434af548ba9a2fd151ec480ea0aa1a400babf47e156f33ccc12009f3e78a3a1ca04191180ed77dd
+ 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
+ -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON
+ -DKDE_INSTALL_PLUGINDIR=plugins
+ -DKDE_INSTALL_QTPLUGINDIR=plugins
+ ${FEATURE_OPTIONS}
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(PACKAGE_NAME KF5ConfigWidgets CONFIG_PATH lib/cmake/KF5ConfigWidgets)
+vcpkg_copy_pdbs()
+
+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/kf5configwidgets/vcpkg.json b/vcpkg/ports/kf5configwidgets/vcpkg.json
new file mode 100644
index 0000000..599e1d6
--- /dev/null
+++ b/vcpkg/ports/kf5configwidgets/vcpkg.json
@@ -0,0 +1,41 @@
+{
+ "name": "kf5configwidgets",
+ "version": "5.98.0",
+ "description": "Widgets for configuration dialogs",
+ "homepage": "https://api.kde.org/frameworks/kconfigwidgets/html/index.html",
+ "dependencies": [
+ "ecm",
+ {
+ "name": "gettext",
+ "host": true,
+ "features": [
+ "tools"
+ ]
+ },
+ {
+ "name": "kf5auth",
+ "platform": "!(windows | android)"
+ },
+ "kf5codecs",
+ "kf5config",
+ "kf5coreaddons",
+ "kf5guiaddons",
+ "kf5i18n",
+ "kf5widgetsaddons",
+ "qt5-base",
+ "qt5-tools",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ],
+ "features": {
+ "designerplugin": {
+ "description": "Enables a Qt Designer plugin"
+ }
+ }
+}