aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/kf5declarative
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/kf5declarative')
-rw-r--r--vcpkg/ports/kf5declarative/portfile.cmake45
-rw-r--r--vcpkg/ports/kf5declarative/vcpkg.json47
2 files changed, 92 insertions, 0 deletions
diff --git a/vcpkg/ports/kf5declarative/portfile.cmake b/vcpkg/ports/kf5declarative/portfile.cmake
new file mode 100644
index 0000000..6cac154
--- /dev/null
+++ b/vcpkg/ports/kf5declarative/portfile.cmake
@@ -0,0 +1,45 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/kdeclarative
+ REF v5.98.0
+ SHA512 327eb517fc5fa47dcd5e1b70fff0a704528789e3cb6652db5269a8c41ba3ffeedc38b71f1e00403a5e0132029497a6dae90f4230d13ffdfeb0469b5ff91e2a71
+ HEAD_REF master
+)
+
+vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ INVERTED_FEATURES
+ "opengl" CMAKE_DISABLE_FIND_PACKAGE_EPOXY
+)
+
+# 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
+ -DBUNDLE_INSTALL_DIR=bin
+ -DKDE_INSTALL_QMLDIR=qml
+ ${FEATURE_OPTIONS}
+ MAYBE_UNUSED_VARIABLES
+ CMAKE_DISABLE_FIND_PACKAGE_EPOXY
+ BUNDLE_INSTALL_DIR
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(PACKAGE_NAME KF5Declarative CONFIG_PATH lib/cmake/KF5Declarative)
+vcpkg_copy_pdbs()
+
+vcpkg_copy_tools(TOOL_NAMES kpackagelauncherqml AUTO_CLEAN)
+
+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/kf5declarative/vcpkg.json b/vcpkg/ports/kf5declarative/vcpkg.json
new file mode 100644
index 0000000..10588da
--- /dev/null
+++ b/vcpkg/ports/kf5declarative/vcpkg.json
@@ -0,0 +1,47 @@
+{
+ "name": "kf5declarative",
+ "version": "5.98.0",
+ "description": "Integration of QML and KDE work spaces",
+ "homepage": "https://api.kde.org/frameworks/kdeclarative/html/index.html",
+ "dependencies": [
+ "ecm",
+ {
+ "name": "gettext",
+ "host": true,
+ "features": [
+ "tools"
+ ]
+ },
+ "kf5config",
+ {
+ "name": "kf5globalaccel",
+ "platform": "!windows"
+ },
+ "kf5guiaddons",
+ "kf5i18n",
+ "kf5iconthemes",
+ "kf5kio",
+ "kf5notifications",
+ "kf5package",
+ "kf5widgetsaddons",
+ "kf5windowsystem",
+ "qt5-base",
+ "qt5-tools",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ],
+ "features": {
+ "opengl": {
+ "description": "Enables OpenGl support",
+ "dependencies": [
+ "libepoxy"
+ ]
+ }
+ }
+}