[rpclib] Initial commit of 2.2.0

This commit is contained in:
Robert Schumacher 2017-10-26 18:16:36 -07:00
parent 133099fa2c
commit 0028cbc23f
2 changed files with 33 additions and 0 deletions

3
ports/rpclib/CONTROL Normal file
View File

@ -0,0 +1,3 @@
Source: rpclib
Version: 2.2.0
Description: a RPC library for C++, providing both a client and server implementation. It is built using modern C++14.

View File

@ -0,0 +1,30 @@
include(vcpkg_common_functions)
if (VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
message(STATUS "Warning: Dynamic building not supported yet. Building static.")
set(VCPKG_LIBRARY_LINKAGE static)
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO rpclib/rpclib
REF v2.2.0
SHA512 73d2344debb3a6ced6a045ba3bf8839a6f91d8f43dfac8760c65d19d1fc7960e778457a20fddbd771d7dd4b12e32d8a925f1fc008d11ccc5654dbeb08ba0f50a
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/rpclib)
vcpkg_copy_pdbs()
file(COPY ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/rpclib)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/rpclib/LICENSE.md ${CURRENT_PACKAGES_DIR}/share/rpclib/copyright)