aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammed Alyousef <may642_2000@hotmail.com>2019-07-15 21:21:20 +0300
committerPhil Christensen <philc@microsoft.com>2019-07-15 11:21:19 -0700
commit8fb83ad0ad2a2b2df3a4338c7cf2d2ca8cc0f7c1 (patch)
tree9a491936db8a412e91a86d19d5d137b69da5bd8a
parentd3829ff3a19be8f97778b7200ac52d5a52263a2b (diff)
downloadvcpkg-8fb83ad0ad2a2b2df3a4338c7cf2d2ca8cc0f7c1.tar.gz
vcpkg-8fb83ad0ad2a2b2df3a4338c7cf2d2ca8cc0f7c1.zip
[cpp-peglib] Add new port (#7254)
-rw-r--r--ports/cpp-peglib/CONTROL3
-rw-r--r--ports/cpp-peglib/portfile.cmake17
2 files changed, 20 insertions, 0 deletions
diff --git a/ports/cpp-peglib/CONTROL b/ports/cpp-peglib/CONTROL
new file mode 100644
index 000000000..6a6ed9ad5
--- /dev/null
+++ b/ports/cpp-peglib/CONTROL
@@ -0,0 +1,3 @@
+Source: cpp-peglib
+Version: 0.1.0
+Description: C++11 header-only PEG (Parsing Expression Grammars) library.
diff --git a/ports/cpp-peglib/portfile.cmake b/ports/cpp-peglib/portfile.cmake
new file mode 100644
index 000000000..25c74c022
--- /dev/null
+++ b/ports/cpp-peglib/portfile.cmake
@@ -0,0 +1,17 @@
+#header-only library
+include(vcpkg_common_functions)
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO yhirose/cpp-peglib
+ REF v0.1.0
+ SHA512 7efe9da8fe75d766a50d6508c81369b71981aa1e36c0d9981d57b75822fde81074b8803753bfa599ab4ce2a7047be731c22476d0938728ebb9a9dbf63aaeb9e6
+ HEAD_REF master
+ )
+
+ file(COPY ${SOURCE_PATH}/peglib.h DESTINATION ${CURRENT_PACKAGES_DIR}/include)
+ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
+ file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib)
+
+ # Handle copyright
+ file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/cpp-peglib)
+ file(RENAME ${CURRENT_PACKAGES_DIR}/share/cpp-peglib/LICENSE ${CURRENT_PACKAGES_DIR}/share/cpp-peglib/copyright)