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