diff options
Diffstat (limited to 'vcpkg/ports/libcurl-simple-https')
| -rw-r--r-- | vcpkg/ports/libcurl-simple-https/portfile.cmake | 19 | ||||
| -rw-r--r-- | vcpkg/ports/libcurl-simple-https/vcpkg.json | 18 |
2 files changed, 37 insertions, 0 deletions
diff --git a/vcpkg/ports/libcurl-simple-https/portfile.cmake b/vcpkg/ports/libcurl-simple-https/portfile.cmake new file mode 100644 index 0000000..4ea56bd --- /dev/null +++ b/vcpkg/ports/libcurl-simple-https/portfile.cmake @@ -0,0 +1,19 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO SamuelMarks/curl-simple-https + REF 5a115053ba4d249fc1af22c3673b4d014e56bcf5 + SHA512 6274bfeec5235d39c627850b1b6ef03c3f1982c74f937b604137cf3cf87e982f971c4681760b42926a3fb15bc8268f2fa48c197919516066d73f53425aa24545 + HEAD_REF master +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + "-DBUILD_CLI=OFF" +) +vcpkg_cmake_install() +file(INSTALL "${SOURCE_PATH}/cmake/License.txt" + DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" + RENAME copyright) +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" + "${CURRENT_PACKAGES_DIR}/debug/share") diff --git a/vcpkg/ports/libcurl-simple-https/vcpkg.json b/vcpkg/ports/libcurl-simple-https/vcpkg.json new file mode 100644 index 0000000..beac2af --- /dev/null +++ b/vcpkg/ports/libcurl-simple-https/vcpkg.json @@ -0,0 +1,18 @@ +{ + "name": "libcurl-simple-https", + "version-date": "2022-02-14", + "description": "Very simple HTTPS interface built atop libcurl", + "license": "Apache-2.0 OR MIT", + "supports": "!uwp", + "dependencies": [ + "curl", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |