aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/kf5textwidgets
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/kf5textwidgets')
-rw-r--r--vcpkg/ports/kf5textwidgets/portfile.cmake32
-rw-r--r--vcpkg/ports/kf5textwidgets/vcpkg.json32
2 files changed, 64 insertions, 0 deletions
diff --git a/vcpkg/ports/kf5textwidgets/portfile.cmake b/vcpkg/ports/kf5textwidgets/portfile.cmake
new file mode 100644
index 0000000..7c2d0e0
--- /dev/null
+++ b/vcpkg/ports/kf5textwidgets/portfile.cmake
@@ -0,0 +1,32 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/ktextwidgets
+ REF v5.98.0
+ SHA512 d25167cf173daa55075ee0586b8db5c478fcc567d2b9466a7c833ffe8cfae21db936df8cbcfc06a82314568b4574b5826bc50bc24087a02bab56fb43fcdcd461
+ HEAD_REF master
+)
+
+# 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_QTPLUGINDIR=plugins
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(PACKAGE_NAME KF5TextWidgets CONFIG_PATH lib/cmake/KF5TextWidgets)
+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/kf5textwidgets/vcpkg.json b/vcpkg/ports/kf5textwidgets/vcpkg.json
new file mode 100644
index 0000000..9756b10
--- /dev/null
+++ b/vcpkg/ports/kf5textwidgets/vcpkg.json
@@ -0,0 +1,32 @@
+{
+ "name": "kf5textwidgets",
+ "version": "5.98.0",
+ "description": "Text editing widgets",
+ "homepage": "https://api.kde.org/frameworks/ktextwidgets/html/index.html",
+ "dependencies": [
+ "ecm",
+ {
+ "name": "gettext",
+ "host": true,
+ "features": [
+ "tools"
+ ]
+ },
+ "kf5completion",
+ "kf5config",
+ "kf5configwidgets",
+ "kf5i18n",
+ "kf5sonnet",
+ "kf5widgetsaddons",
+ "qt5-base",
+ "qt5-tools",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}