diff options
| author | Dawid Wróbel <me@dawidwrobel.com> | 2021-08-09 16:00:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-09 09:00:57 -0700 |
| commit | 7a4dc666e2b9758211c9a736a77b2518e4a49f09 (patch) | |
| tree | 4b45a6fd060ff39368c3e1a7ad8202de83eb7336 /ports | |
| parent | 3d4c4cbdc7b4e86b3a9c846d303591b6033edd96 (diff) | |
| download | vcpkg-7a4dc666e2b9758211c9a736a77b2518e4a49f09.tar.gz vcpkg-7a4dc666e2b9758211c9a736a77b2518e4a49f09.zip | |
[kf5attica] new port (#19446)
* Add KF5Attica
* [kf5attica] bump to 5.73
* [kf5attica] use PORT variable where applicable
* [kf5attica] update to 5.75.0
* [kf5attica] port CONTROL to JSON
* [kf5attica] update to 5.84.0
* [kf5attica] remove unused options
* [kf5attica] only remove what's required
* [kf5attica] grammar in description
* [kf5attica] update deprecated functions
* [kf5attica] wrap paths in quotes
* [kf5attica] update versions
* [kf5attica] fix static builds
* [kf5attica] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/kf5attica/portfile.cmake | 27 | ||||
| -rw-r--r-- | ports/kf5attica/vcpkg.json | 19 |
2 files changed, 46 insertions, 0 deletions
diff --git a/ports/kf5attica/portfile.cmake b/ports/kf5attica/portfile.cmake new file mode 100644 index 000000000..30b4b281a --- /dev/null +++ b/ports/kf5attica/portfile.cmake @@ -0,0 +1,27 @@ +vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/attica
+ REF v5.84.0
+ SHA512 dedaac49d85c791027a567f82909953f06337734c9302ab4147341eb5ebdb14e2a1ffcfdf49d9e0c97e17e065498392f9a1a900557fe8937fa0e680cda2235ea
+ HEAD_REF master
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ DISABLE_PARALLEL_CONFIGURE
+ OPTIONS
+ -DBUILD_TESTING=OFF
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/KF5Attica)
+vcpkg_copy_pdbs()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+
+if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
+endif()
+
+file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
diff --git a/ports/kf5attica/vcpkg.json b/ports/kf5attica/vcpkg.json new file mode 100644 index 000000000..83ab52cd2 --- /dev/null +++ b/ports/kf5attica/vcpkg.json @@ -0,0 +1,19 @@ +{ + "name": "kf5attica", + "version-semver": "5.84.0", + "description": "A Qt library that implements the Open Collaboration Services API", + "homepage": "https://api.kde.org/frameworks/attica/html/index.html", + "dependencies": [ + "ecm", + "qt5-base", + "qt5-tools", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |
