diff options
Diffstat (limited to 'vcpkg/ports/xorstr')
| -rw-r--r-- | vcpkg/ports/xorstr/portfile.cmake | 11 | ||||
| -rw-r--r-- | vcpkg/ports/xorstr/vcpkg.json | 7 |
2 files changed, 18 insertions, 0 deletions
diff --git a/vcpkg/ports/xorstr/portfile.cmake b/vcpkg/ports/xorstr/portfile.cmake new file mode 100644 index 0000000..dc60207 --- /dev/null +++ b/vcpkg/ports/xorstr/portfile.cmake @@ -0,0 +1,11 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO JustasMasiulis/xorstr + REF 066c64eea5104f4e3cfbc49e39031400e086425a # 2021-11-20 + SHA512 b28895c3d51089820ef9bf2dd80b1af5eda2f8463c8374d39bc3b54c4928ecd787977cfd4e207f56cd58e3ec0360e428a52c4b813a8f380258cf29914e32ff50 + HEAD_REF master +) + +file(COPY "${SOURCE_PATH}/include/xorstr.hpp" DESTINATION "${CURRENT_PACKAGES_DIR}/include") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") diff --git a/vcpkg/ports/xorstr/vcpkg.json b/vcpkg/ports/xorstr/vcpkg.json new file mode 100644 index 0000000..35b772b --- /dev/null +++ b/vcpkg/ports/xorstr/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "xorstr", + "version-date": "2021-11-20", + "description": "Heavily vectorized c++17 compile time string encryption", + "homepage": "https://github.com/JustasMasiulis/xorstr", + "license": "Apache-2.0" +} |