aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2018-01-18 00:43:40 -0800
committerGitHub <noreply@github.com>2018-01-18 00:43:40 -0800
commit27188d3b1e9fca6b5794d049bde7edd5e8126dd2 (patch)
tree98c7d9a83ec27e791886b4e3181b861fc0e99c49
parent00f3af78ee7636b1555cbd6a6873d9e5a3985f77 (diff)
parentbbc24d2212ad8ea64ee656cf5efbc32f96cd4f42 (diff)
downloadvcpkg-27188d3b1e9fca6b5794d049bde7edd5e8126dd2.tar.gz
vcpkg-27188d3b1e9fca6b5794d049bde7edd5e8126dd2.zip
Merge pull request #2555 from horenmar/introduce-catch2
Add specific port for Catch2
-rw-r--r--ports/catch2/CONTROL4
-rw-r--r--ports/catch2/portfile.cmake18
2 files changed, 22 insertions, 0 deletions
diff --git a/ports/catch2/CONTROL b/ports/catch2/CONTROL
new file mode 100644
index 000000000..6eeb40c21
--- /dev/null
+++ b/ports/catch2/CONTROL
@@ -0,0 +1,4 @@
+Source: catch2
+Version: 2.1.0
+Description: A modern, header-only test framework for unit testing.
+ Issues, PRs and changelogs can be found at https://github.com/catchorg/Catch2
diff --git a/ports/catch2/portfile.cmake b/ports/catch2/portfile.cmake
new file mode 100644
index 000000000..635bc385a
--- /dev/null
+++ b/ports/catch2/portfile.cmake
@@ -0,0 +1,18 @@
+include(vcpkg_common_functions)
+
+set(CATCH_VERSION v2.1.0)
+
+vcpkg_download_distfile(HEADER
+ URLS "https://github.com/catchorg/Catch2/releases/download/${CATCH_VERSION}/catch.hpp"
+ FILENAME "catchorg-catch2-${CATCH_VERSION}.hpp"
+ SHA512 967a9b4046ec2c72f094bebae381b5090e88358faefde9bdbca3d7e058c299c1bed0542653de79c857f78139d7969b0815bb8b8a60ff13e2144fcb7af2a2020c
+)
+
+vcpkg_download_distfile(LICENSE
+ URLS "https://raw.githubusercontent.com/catchorg/Catch2/${CATCH_VERSION}/LICENSE.txt"
+ FILENAME "catchorg-catch2-LICENSE-${CATCH_VERSION}.txt"
+ SHA512 d6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8
+)
+
+file(INSTALL ${HEADER} DESTINATION ${CURRENT_PACKAGES_DIR}/include RENAME catch.hpp)
+file(INSTALL ${LICENSE} DESTINATION ${CURRENT_PACKAGES_DIR}/share/catch2 RENAME copyright)