Add specific port for Catch2

This commit is contained in:
Martin Hořeňovský 2018-01-12 11:13:55 +01:00
parent 6bdc3bf9eb
commit 0fb03e8b73
2 changed files with 23 additions and 0 deletions

5
ports/catch2/CONTROL Normal file
View File

@ -0,0 +1,5 @@
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

View File

@ -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 "catch-${CATCH_VERSION}.hpp"
SHA512 6c2b9d4337369362b9079ac4eb53481e2db2a235af6ed0fa9d178775336a5c2d6aba1f86967f53de736aa198ae9d1acadd15a8c3ae2348c7dec0450e6452c716
)
vcpkg_download_distfile(LICENSE
URLS "https://raw.githubusercontent.com/catchorg/Catch2/${CATCH_VERSION}/LICENSE.txt"
FILENAME "catch-LICENSE-${CATCH_VERSION}.txt"
SHA512 f1a8d21ccbb6436d289ecfae65b9019278e40552a2383aaf6c1dfed98affe6e7bbf364d67597a131642b62446a0c40495e66a7efca7e6dff72727c6fd3776407
)
file(INSTALL ${HEADER} DESTINATION ${CURRENT_PACKAGES_DIR}/include RENAME catch.hpp)
file(INSTALL ${LICENSE} DESTINATION ${CURRENT_PACKAGES_DIR}/share/catch RENAME copyright)