aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/kf5itemviews
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/kf5itemviews')
-rw-r--r--vcpkg/ports/kf5itemviews/portfile.cmake31
-rw-r--r--vcpkg/ports/kf5itemviews/vcpkg.json19
2 files changed, 50 insertions, 0 deletions
diff --git a/vcpkg/ports/kf5itemviews/portfile.cmake b/vcpkg/ports/kf5itemviews/portfile.cmake
new file mode 100644
index 0000000..2c278a4
--- /dev/null
+++ b/vcpkg/ports/kf5itemviews/portfile.cmake
@@ -0,0 +1,31 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/kitemviews
+ REF v5.98.0
+ SHA512 1a9643376c971323a82a8ef909a9c31f168bdf89842ebf667ac69c9d76c51fc8124eb366c602b2bdff28082c9199690be6091d2634ebf12a07aeeaddd96810ab
+)
+
+# 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 KF5ItemViews CONFIG_PATH lib/cmake/KF5ItemViews)
+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/kf5itemviews/vcpkg.json b/vcpkg/ports/kf5itemviews/vcpkg.json
new file mode 100644
index 0000000..c11eb3d
--- /dev/null
+++ b/vcpkg/ports/kf5itemviews/vcpkg.json
@@ -0,0 +1,19 @@
+{
+ "name": "kf5itemviews",
+ "version": "5.98.0",
+ "description": "Widget addons for Qt Model/View",
+ "homepage": "https://api.kde.org/frameworks/kitemviews/html/index.html",
+ "dependencies": [
+ "ecm",
+ "qt5-base",
+ "qt5-tools",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}