diff options
Diffstat (limited to 'vcpkg/ports/cialloo-rcon')
| -rw-r--r-- | vcpkg/ports/cialloo-rcon/portfile.cmake | 16 | ||||
| -rw-r--r-- | vcpkg/ports/cialloo-rcon/usage | 4 | ||||
| -rw-r--r-- | vcpkg/ports/cialloo-rcon/vcpkg.json | 10 |
3 files changed, 30 insertions, 0 deletions
diff --git a/vcpkg/ports/cialloo-rcon/portfile.cmake b/vcpkg/ports/cialloo-rcon/portfile.cmake new file mode 100644 index 0000000..466fba8 --- /dev/null +++ b/vcpkg/ports/cialloo-rcon/portfile.cmake @@ -0,0 +1,16 @@ +vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO luckyweNda/rcon
+ REF 6ea49bbd54bbf7604e4e3f6fc2dbd4e507d7bd90
+ SHA512 84fefc80e6c47decd9fedb2df1ce1c2671cf8159eb8d60d9b90e3208dd2bd5786eb1bbd526d1d252cd1fc4c6bbb0377712b224c8a4b7ea66b52c6184c241f85e
+ HEAD_REF main
+)
+
+# Install include directory
+file(INSTALL "${SOURCE_PATH}/include" DESTINATION "${CURRENT_PACKAGES_DIR}")
+
+# Handle copyright
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
+
+# Copy usage file
+file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
diff --git a/vcpkg/ports/cialloo-rcon/usage b/vcpkg/ports/cialloo-rcon/usage new file mode 100644 index 0000000..9c33607 --- /dev/null +++ b/vcpkg/ports/cialloo-rcon/usage @@ -0,0 +1,4 @@ +The package rcon is header only and can be used from CMake via:
+
+ find_path(RCON_INCLUDE_DIRS "rcon.hpp")
+ target_include_directories(main PRIVATE ${RCON_INCLUDE_DIRS})
diff --git a/vcpkg/ports/cialloo-rcon/vcpkg.json b/vcpkg/ports/cialloo-rcon/vcpkg.json new file mode 100644 index 0000000..ea7d342 --- /dev/null +++ b/vcpkg/ports/cialloo-rcon/vcpkg.json @@ -0,0 +1,10 @@ +{ + "name": "cialloo-rcon", + "version": "1.0.0", + "description": "implementation in valve source rcon protocal", + "homepage": "https://github.com/luckyweNda/rcon", + "license": "MIT", + "dependencies": [ + "asio" + ] +} |