diff options
| author | SeekingMeaning <meaningseeking@protonmail.com> | 2020-01-20 09:28:16 -0800 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2020-01-20 09:28:16 -0800 |
| commit | 11be3cd2b79d2353531a0e80300f44bcb15ef675 (patch) | |
| tree | 5287681d6e63695cc291da3097c89d725dfef937 | |
| parent | 299e8b4ac6008c057edb503eb218f0217e9c8f99 (diff) | |
| download | vcpkg-11be3cd2b79d2353531a0e80300f44bcb15ef675.tar.gz vcpkg-11be3cd2b79d2353531a0e80300f44bcb15ef675.zip | |
[ppconsul] Add missing boost dependencies (#9752)
* [ppconsul] Possible fix for CI
* Update CONTROL
* Update
| -rw-r--r-- | ports/ppconsul/CONTROL | 4 | ||||
| -rw-r--r-- | ports/ppconsul/portfile.cmake | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/ports/ppconsul/CONTROL b/ports/ppconsul/CONTROL index 4902c1f07..ea49156d9 100644 --- a/ports/ppconsul/CONTROL +++ b/ports/ppconsul/CONTROL @@ -1,5 +1,5 @@ Source: ppconsul -Version: 0.4 +Version: 0.4-1 Homepage: https://github.com/oliora/ppconsul Description: A C++ client library for Consul. Consul is a distributed tool for discovering and configuring services in your infrastructure. -Build-Depends: boost-core, boost-variant, curl[openssl], json11 +Build-Depends: boost-core, boost-variant, boost-optional, boost-fusion, curl[openssl], json11 diff --git a/ports/ppconsul/portfile.cmake b/ports/ppconsul/portfile.cmake index 60da089e6..50dd08c37 100644 --- a/ports/ppconsul/portfile.cmake +++ b/ports/ppconsul/portfile.cmake @@ -1,5 +1,3 @@ -include(vcpkg_common_functions) - vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO oliora/ppconsul @@ -22,7 +20,7 @@ vcpkg_install_cmake() vcpkg_fixup_cmake_targets(CONFIG_PATH cmake) -file(INSTALL ${SOURCE_PATH}/LICENSE_1_0.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/ppconsul RENAME copyright) +file(INSTALL ${SOURCE_PATH}/LICENSE_1_0.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) |
