diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-05-01 15:55:59 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2018-05-14 17:56:34 -0700 |
| commit | fcb303331e44b08eb921d644aed531463c8f7077 (patch) | |
| tree | 77065edd7880ba438a6096a2546a1f0c8adac84d /ports/robin-map | |
| parent | 29d04b8b4005f5e2bfe61ccdc7a93d5c6c8a13d9 (diff) | |
| download | vcpkg-fcb303331e44b08eb921d644aed531463c8f7077.tar.gz vcpkg-fcb303331e44b08eb921d644aed531463c8f7077.zip | |
[abseil][aws-sdk-cpp][folly][jsonnet][ms-gsl][mujs][openimageio][re2][rs-core-lib][thrift][unicorn-lib][zeromq] Upgrades
[robin-map] Initial commit
Diffstat (limited to 'ports/robin-map')
| -rw-r--r-- | ports/robin-map/CONTROL | 3 | ||||
| -rw-r--r-- | ports/robin-map/portfile.cmake | 17 |
2 files changed, 20 insertions, 0 deletions
diff --git a/ports/robin-map/CONTROL b/ports/robin-map/CONTROL new file mode 100644 index 000000000..f24dc8337 --- /dev/null +++ b/ports/robin-map/CONTROL @@ -0,0 +1,3 @@ +Source: robin-map +Version: 0.2.0 +Description: A C++ implementation of a fast hash map and hash set using robin hood hashing diff --git a/ports/robin-map/portfile.cmake b/ports/robin-map/portfile.cmake new file mode 100644 index 000000000..6436f6194 --- /dev/null +++ b/ports/robin-map/portfile.cmake @@ -0,0 +1,17 @@ +include(vcpkg_common_functions) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO Tessil/robin-map + REF v0.2.0 + SHA512 6d16c612a0d646fd08857f2f6ee2909fb607ff05fa9c7733a2b618d662f63bba2f99677b75a09870a1582b7b37f255c4ff1f9171c897c3cfa73dd8879de1ec18 + HEAD_REF master +) + +file(COPY ${SOURCE_PATH}/tsl DESTINATION ${CURRENT_PACKAGES_DIR}/include) + +file(INSTALL + ${SOURCE_PATH}/LICENSE + DESTINATION ${CURRENT_PACKAGES_DIR}/share/robin-map + RENAME copyright +) |
