aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/tinytoml/CONTROL3
-rw-r--r--ports/tinytoml/portfile.cmake16
2 files changed, 19 insertions, 0 deletions
diff --git a/ports/tinytoml/CONTROL b/ports/tinytoml/CONTROL
new file mode 100644
index 000000000..b656fccc4
--- /dev/null
+++ b/ports/tinytoml/CONTROL
@@ -0,0 +1,3 @@
+Source: tinytoml
+Version: 20180219-1
+Description: A header only C++11 library for parsing TOML.
diff --git a/ports/tinytoml/portfile.cmake b/ports/tinytoml/portfile.cmake
new file mode 100644
index 000000000..9d7275cf2
--- /dev/null
+++ b/ports/tinytoml/portfile.cmake
@@ -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)