mirror of
https://github.com/cemu-project/vcpkg.git
synced 2024-11-30 14:40:24 +00:00
Merge pull request #4914 from marcomagdy/aws-lambda-cpp
[aws-lambda-cpp] add new port
This commit is contained in:
commit
93d020f619
4
ports/aws-lambda-cpp/CONTROL
Normal file
4
ports/aws-lambda-cpp/CONTROL
Normal file
@ -0,0 +1,4 @@
|
||||
Source: aws-lambda-cpp
|
||||
Version: 0.1.0
|
||||
Build-Depends: curl
|
||||
Description: C++ Runtime for AWS Lambda.
|
24
ports/aws-lambda-cpp/portfile.cmake
Normal file
24
ports/aws-lambda-cpp/portfile.cmake
Normal file
@ -0,0 +1,24 @@
|
||||
include(vcpkg_common_functions)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO awslabs/aws-lambda-cpp
|
||||
REF v0.1.0
|
||||
SHA512 78b1ad1dcd88176a954c03b38cbb962c77488da6c75acb37a8b64cde147c030b02c6e51f0a974edb042e59c3c969d110d181ad097ef76f43255500b272a94454
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
# Handle copyright
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/aws-lambda-cpp RENAME copyright)
|
||||
|
Loading…
Reference in New Issue
Block a user