aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-02 18:49:50 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-02 18:49:50 -0800
commit761d56711ef4865c5e6f4076977e55b7b232665a (patch)
treef983da380ed808b63515a113a2b98c98368a2a40
parent62e7557545c17462670b7741d74dd2db4f5612eb (diff)
downloadvcpkg-761d56711ef4865c5e6f4076977e55b7b232665a.tar.gz
vcpkg-761d56711ef4865c5e6f4076977e55b7b232665a.zip
Add websocketpp
-rw-r--r--ports/websocketpp/CONTROL3
-rw-r--r--ports/websocketpp/portfile.cmake24
2 files changed, 27 insertions, 0 deletions
diff --git a/ports/websocketpp/CONTROL b/ports/websocketpp/CONTROL
new file mode 100644
index 000000000..c11e64d3e
--- /dev/null
+++ b/ports/websocketpp/CONTROL
@@ -0,0 +1,3 @@
+Source: websocketpp
+Version: 0.7.0
+Description: Library that implements RFC6455 The WebSocket Protocol \ No newline at end of file
diff --git a/ports/websocketpp/portfile.cmake b/ports/websocketpp/portfile.cmake
new file mode 100644
index 000000000..98a4d52e6
--- /dev/null
+++ b/ports/websocketpp/portfile.cmake
@@ -0,0 +1,24 @@
+#header-only library
+include(vcpkg_common_functions)
+set(VERSION "0.7.0")
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/websocketpp-${VERSION})
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://github.com/zaphoyd/websocketpp/archive/${VERSION}.zip"
+ FILENAME "websocketpp-${VERSION}.zip"
+ SHA512 0cfbc5ed7034758b3666b5154854287441ebeef8e18c4e5f39b62559d4f0e9dda63d79021243c447f57b9855209e1813aeb1c6c475fc98aa71ff03933fc7ac0c
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/share)
+
+# Put the license file where vcpkg expects it
+file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/websocketpp/)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/websocketpp/COPYING ${CURRENT_PACKAGES_DIR}/share/websocketpp/copyright)
+
+# Copy the header files
+file(COPY "${SOURCE_PATH}/websocketpp" DESTINATION "${CURRENT_PACKAGES_DIR}/include" FILES_MATCHING PATTERN "*.hpp")
+
+set(INSTALL_INCLUDE_DIR "\${CMAKE_CURRENT_LIST_DIR}/../../include")
+set(WEBSOCKETPP_VERSION ${VERSION})
+configure_file (${SOURCE_PATH}/websocketpp-config.cmake.in "${CURRENT_PACKAGES_DIR}/share/websocketpp/websocketpp-config.cmake" @ONLY)
+configure_file (${SOURCE_PATH}/websocketpp-configVersion.cmake.in "${CURRENT_PACKAGES_DIR}/share/websocketpp/websocketpp-configVersion.cmake" @ONLY) \ No newline at end of file