diff options
| author | NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> | 2020-01-06 14:59:18 -0800 |
|---|---|---|
| committer | dan-shaw <51385773+dan-shaw@users.noreply.github.com> | 2020-01-06 14:59:18 -0800 |
| commit | eab8812ac5f78fe115f4717beb364b4e1f9cf220 (patch) | |
| tree | 98256a98ccf9082c301a1f92d24c315d676ab4c9 /ports | |
| parent | ec2ceeba40c6da6af1c79b32afa822c0082e42f7 (diff) | |
| download | vcpkg-eab8812ac5f78fe115f4717beb364b4e1f9cf220.tar.gz vcpkg-eab8812ac5f78fe115f4717beb364b4e1f9cf220.zip | |
[libb2] Add new port (#8518)
* [libb2] Add new port
* Update
* Update ci.baseline.txt
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/libb2/CONTROL | 4 | ||||
| -rw-r--r-- | ports/libb2/portfile.cmake | 23 |
2 files changed, 27 insertions, 0 deletions
diff --git a/ports/libb2/CONTROL b/ports/libb2/CONTROL new file mode 100644 index 000000000..0523b60d5 --- /dev/null +++ b/ports/libb2/CONTROL @@ -0,0 +1,4 @@ +Source: libb2 +Version: 0.98.1 +Homepage: https://github.com/BLAKE2/libb2 +Description: C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp
\ No newline at end of file diff --git a/ports/libb2/portfile.cmake b/ports/libb2/portfile.cmake new file mode 100644 index 000000000..88007bdf0 --- /dev/null +++ b/ports/libb2/portfile.cmake @@ -0,0 +1,23 @@ +vcpkg_fail_port_install(MESSAGE "${PORT} currently only supports Linux platform" ON_TARGET "Windows" "OSX") + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO BLAKE2/libb2 + REF 2c5142f12a2cd52f3ee0a43e50a3a76f75badf85 + SHA512 cf29cf9391ae37a978eb6618de6f856f3defa622b8f56c2d5a519ab34fd5e4d91f3bb868601a44e9c9164a2992e80dde188ccc4d1605dffbdf93687336226f8d + HEAD_REF master +) + +vcpkg_configure_make( + SOURCE_PATH ${SOURCE_PATH} + AUTOCONFIG +) + +vcpkg_install_make() + +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) + +vcpkg_copy_pdbs() + +# Handle copyright +file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
\ No newline at end of file |
