aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alex@karatarakis.com>2017-12-04 19:25:06 -0800
committerGitHub <noreply@github.com>2017-12-04 19:25:06 -0800
commit6f45d1038f5ba9ce5c7f6e6580b23111f0dae5c9 (patch)
treeaae2c84a8d2685195246692aea6df001c1cee7ca
parent95c12c85d9a3b66b62ac969c30464e9c42fa198c (diff)
parent052b866ac37e5ad22ec8d60f2b9677d3429a280d (diff)
downloadvcpkg-6f45d1038f5ba9ce5c7f6e6580b23111f0dae5c9.tar.gz
vcpkg-6f45d1038f5ba9ce5c7f6e6580b23111f0dae5c9.zip
Merge pull request #2298 from rapoth/master
Added port for re2 2017-12-01 release
-rw-r--r--ports/re2/CONTROL3
-rw-r--r--ports/re2/portfile.cmake19
2 files changed, 22 insertions, 0 deletions
diff --git a/ports/re2/CONTROL b/ports/re2/CONTROL
new file mode 100644
index 000000000..5a37abbaf
--- /dev/null
+++ b/ports/re2/CONTROL
@@ -0,0 +1,3 @@
+Source: re2
+Version: 2017-12-01
+Description: RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library. \ No newline at end of file
diff --git a/ports/re2/portfile.cmake b/ports/re2/portfile.cmake
new file mode 100644
index 000000000..7caf9acba
--- /dev/null
+++ b/ports/re2/portfile.cmake
@@ -0,0 +1,19 @@
+include(vcpkg_common_functions)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/re2-2017-12-01)
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://github.com/google/re2/archive/2017-12-01.zip"
+ FILENAME "re2-2017-12-01.zip"
+ SHA512 64e9b8673201fd3b0253acfd9fcb2985e88db69724e31a9c839d3b5cddfa1b91cf9e4fb70b12250fd4d6a7934a50550f6000627607227ed97bca329bfeb5bcc4
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS -DRE2_BUILD_TESTING=1 -DBUILD_SHARED_LIBS=1 -DBUILD_TESTING=1
+)
+
+vcpkg_install_cmake()
+
+# Handle copyright
+file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/re2 RENAME copyright)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)