[libyaml] Fix linkage in non-Windows systems (#10908)

Signed-off-by: Alexandro Sanchez <alexandro@phi.nz>
This commit is contained in:
Alexandro Sanchez 2020-04-21 22:19:48 +02:00 committed by GitHub
parent 1da127ed7c
commit 84041ca52a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,3 @@
Source: libyaml
Version: 0.2.2-2
Version: 0.2.2-3
Description: A C library for parsing and emitting YAML.

View File

@ -1,4 +1,6 @@
include(vcpkg_common_functions)
if (WIN32)
set(PATCHES fix-POSIX_name.patch)
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
@ -6,8 +8,7 @@ vcpkg_from_github(
REF 0.2.2
SHA512 455494591014a97c4371a1f372ad09f0d6e487e4f1d3419c98e9cd2f16d43a0cf9a0787d7250bebee8b8d400df4626f5acd81e90139e54fa574a66ec84964c06
HEAD_REF master
PATCHES
fix-POSIX_name.patch
PATCHES ${PATCHES}
)
vcpkg_configure_cmake(
@ -25,4 +26,4 @@ vcpkg_fixup_cmake_targets(CONFIG_PATH share/yaml TARGET_PATH share/yaml)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/include/config.h ${CURRENT_PACKAGES_DIR}/debug/share)
configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/libyaml/copyright COPYONLY)
configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)