aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/kf5completion
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/kf5completion')
-rw-r--r--vcpkg/ports/kf5completion/portfile.cmake32
-rw-r--r--vcpkg/ports/kf5completion/vcpkg.json20
2 files changed, 52 insertions, 0 deletions
diff --git a/vcpkg/ports/kf5completion/portfile.cmake b/vcpkg/ports/kf5completion/portfile.cmake
new file mode 100644
index 0000000..92d8ab0
--- /dev/null
+++ b/vcpkg/ports/kf5completion/portfile.cmake
@@ -0,0 +1,32 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/kcompletion
+ REF v5.98.0
+ SHA512 16cc4518e0db6f5583ce0ee24cb1f0f8f2812890bc1ed0d9f519cdeeeea79d5eb1fe82408fc5e101fbb2278bff00a61786e95189ffe2180ee289e7ed10ba6ac9
+ 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
+ -DBUILD_DESIGNERPLUGIN=OFF
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(PACKAGE_NAME KF5Completion CONFIG_PATH lib/cmake/KF5Completion)
+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/kf5completion/vcpkg.json b/vcpkg/ports/kf5completion/vcpkg.json
new file mode 100644
index 0000000..6cd21e1
--- /dev/null
+++ b/vcpkg/ports/kf5completion/vcpkg.json
@@ -0,0 +1,20 @@
+{
+ "name": "kf5completion",
+ "version": "5.98.0",
+ "description": "Text completion helpers and widgets",
+ "homepage": "https://api.kde.org/frameworks/kcompletion/html/index.html",
+ "dependencies": [
+ "ecm",
+ "kf5config",
+ "kf5widgetsaddons",
+ "qt5-tools",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}