aboutsummaryrefslogtreecommitdiff
path: root/ports/cpp-netlib
diff options
context:
space:
mode:
authorNancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>2019-05-15 16:46:28 -0700
committerVictor Romero <romerosanchezv@gmail.com>2019-05-15 16:46:28 -0700
commit97431cb93e5088992dc8f05f45948b2984071b29 (patch)
tree8e0f0094f0f07ac4082b5e674ddb9665102a1614 /ports/cpp-netlib
parent6cd058d3ae685caa825de5889dce3518ec208a33 (diff)
downloadvcpkg-97431cb93e5088992dc8f05f45948b2984071b29.tar.gz
vcpkg-97431cb93e5088992dc8f05f45948b2984071b29.zip
[cpp-netlib] Add new port (#6424)
* [cpp-netlib] Add new port * Fix the problem on Linux. * Add the unsupported message for UWP.
Diffstat (limited to 'ports/cpp-netlib')
-rw-r--r--ports/cpp-netlib/CONTROL4
-rw-r--r--ports/cpp-netlib/portfile.cmake37
2 files changed, 41 insertions, 0 deletions
diff --git a/ports/cpp-netlib/CONTROL b/ports/cpp-netlib/CONTROL
new file mode 100644
index 000000000..010786d53
--- /dev/null
+++ b/ports/cpp-netlib/CONTROL
@@ -0,0 +1,4 @@
+Source: cpp-netlib
+Version: 0.13.0-rc3
+Description: A collection of network-related routines/implementations geared towards providing a robust cross-platform networking library
+Build-Depends: boost \ No newline at end of file
diff --git a/ports/cpp-netlib/portfile.cmake b/ports/cpp-netlib/portfile.cmake
new file mode 100644
index 000000000..ff9870e46
--- /dev/null
+++ b/ports/cpp-netlib/portfile.cmake
@@ -0,0 +1,37 @@
+include(vcpkg_common_functions)
+
+if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
+ message(FATAL_ERROR "${PORT} does not currently support UWP")
+endif()
+
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO cpp-netlib/cpp-netlib
+ REF cpp-netlib-0.13.0-rc3
+ SHA512 ddc4178381ebc4179bc243d19ecd4c7e424a61a7b75b6fd59d1f9e9fbcc1383c0afba97bcbef1b791eedb5a7a2cd63a633454f3848dfc5d76a41cc8a2c6ed302
+ HEAD_REF master
+)
+
+ vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+ -DCPP-NETLIB_BUILD_TESTS=off
+ -DCPP-NETLIB_BUILD_EXAMPLES=off
+
+)
+
+vcpkg_install_cmake()
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+if(WIN32 AND NOT CYGWIN)
+ vcpkg_fixup_cmake_targets(CONFIG_PATH cmake TARGET_PATH share/${PORT})
+else()
+ vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/cppnetlib)
+endif()
+
+file(INSTALL ${SOURCE_PATH}/LICENSE_1_0.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
+