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/luabridge | |
Diffstat (limited to 'vcpkg/ports/luabridge')
| -rw-r--r-- | vcpkg/ports/luabridge/portfile.cmake | 10 | ||||
| -rw-r--r-- | vcpkg/ports/luabridge/vcpkg.json | 7 |
2 files changed, 17 insertions, 0 deletions
diff --git a/vcpkg/ports/luabridge/portfile.cmake b/vcpkg/ports/luabridge/portfile.cmake new file mode 100644 index 0000000..dc73ba7 --- /dev/null +++ b/vcpkg/ports/luabridge/portfile.cmake @@ -0,0 +1,10 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO vinniefalco/LuaBridge + REF ${VERSION} + SHA512 d159bbe3411bf71f3737733e207daef1b583d5efa005d4f6917b4f81e1b03ee0085e1998d797c4149815d0376f0ee6ef03d56a3c314e099ef28f24921b3480f4 + HEAD_REF master +) + +file(COPY "${SOURCE_PATH}/Source/LuaBridge" DESTINATION "${CURRENT_PACKAGES_DIR}/include") +file(INSTALL "${SOURCE_PATH}/README.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/vcpkg/ports/luabridge/vcpkg.json b/vcpkg/ports/luabridge/vcpkg.json new file mode 100644 index 0000000..635aa02 --- /dev/null +++ b/vcpkg/ports/luabridge/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "luabridge", + "version": "2.10", + "description": "A lightweight, dependency-free library for binding Lua to C++", + "homepage": "https://github.com/vinniefalco/LuaBridge", + "license": "MIT" +} |