[tinytoml] Initial port (#2836)

* [tinytoml] Initial port

This port works only using --head since no tags are provided by the
author.

* [tinytoml] Add stable REF and SHA512
This commit is contained in:
Tobias Schwendemann 2018-02-19 17:41:25 +01:00 committed by Robert Schumacher
parent 1874e0108f
commit 0e872e6bd1
2 changed files with 19 additions and 0 deletions

3
ports/tinytoml/CONTROL Normal file
View File

@ -0,0 +1,3 @@
Source: tinytoml
Version: 20180219-1
Description: A header only C++11 library for parsing TOML.

View File

@ -0,0 +1,16 @@
include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO mayah/tinytoml
REF 8fe890978b3390de1fc1f26c2d6bf1711c700c5a
SHA512 c7302950c94001b5376009a08181589c7fb040d7c23343e3dbbdcf37caa0ce8f4319adb1899d946ecee3bfb7079dbe46689d6016d94fc08b610ed56fb1113b81
HEAD_REF master
)
file(INSTALL ${SOURCE_PATH}/include DESTINATION ${CURRENT_PACKAGES_DIR} FILES_MATCHING PATTERN "*.h")
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/tinytoml RENAME copyright)