diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/yato | |
Diffstat (limited to 'vcpkg/ports/yato')
| -rw-r--r-- | vcpkg/ports/yato/portfile.cmake | 31 | ||||
| -rw-r--r-- | vcpkg/ports/yato/vcpkg.json | 13 |
2 files changed, 44 insertions, 0 deletions
diff --git a/vcpkg/ports/yato/portfile.cmake b/vcpkg/ports/yato/portfile.cmake new file mode 100644 index 0000000..7626249 --- /dev/null +++ b/vcpkg/ports/yato/portfile.cmake @@ -0,0 +1,31 @@ +vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO agruzdev/Yato
+ REF 9b5a49f6ec4169b67b9e5ffd11fdae9c238b0a3d
+ SHA512 41962839cd13a314a17fef5f6065d7c3ed9967832039ca31993105685d584307d00f17c1514f4acf855a71fd884a1104c2d9c6a4461be5d2d7cfdc50b1ea7bdb
+ HEAD_REF master
+)
+
+# Copy all header files
+file(COPY "${SOURCE_PATH}/include/yato"
+ DESTINATION "${CURRENT_PACKAGES_DIR}/include"
+)
+file(COPY "${SOURCE_PATH}/modules/actors/yato"
+ DESTINATION "${CURRENT_PACKAGES_DIR}/include"
+)
+file(COPY "${SOURCE_PATH}/modules/config/yato"
+ DESTINATION "${CURRENT_PACKAGES_DIR}/include"
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DYATO_BUILD_TESTS:BOOL=OFF
+ -DYATO_BUILD_ACTORS:BOOL=ON
+ -DYATO_BUILD_CONFIG:BOOL=ON
+)
+
+vcpkg_cmake_build()
+
+# Handle copyright
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/vcpkg/ports/yato/vcpkg.json b/vcpkg/ports/yato/vcpkg.json new file mode 100644 index 0000000..d854276 --- /dev/null +++ b/vcpkg/ports/yato/vcpkg.json @@ -0,0 +1,13 @@ +{ + "name": "yato", + "version-date": "2022-03-06", + "description": "Modern C++14 containers and utilities, actors system, typesafe config", + "license": "Apache-2.0", + "supports": "!(windows & arm)", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + } + ] +} |