From 7c82b03faf93e607c722e518819a54e4359aeddc Mon Sep 17 00:00:00 2001 From: Leonardo Guilherme de Freitas Date: Tue, 7 Jul 2020 17:41:59 -0300 Subject: [Font Chef] add font-chef C/C++ library (#12293) * add font-chef * Fix wrong hash and useless command * Fix static build error Co-authored-by: Lily <47812810+LilyWangL@users.noreply.github.com> --- ports/font-chef/CONTROL | 4 ++++ ports/font-chef/portfile.cmake | 23 +++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 ports/font-chef/CONTROL create mode 100644 ports/font-chef/portfile.cmake diff --git a/ports/font-chef/CONTROL b/ports/font-chef/CONTROL new file mode 100644 index 000000000..4b097acb9 --- /dev/null +++ b/ports/font-chef/CONTROL @@ -0,0 +1,4 @@ +Source: font-chef +Version: 1.0.1 +Description: A font cooking library +Homepage: https://github.com/mobius3/font-chef diff --git a/ports/font-chef/portfile.cmake b/ports/font-chef/portfile.cmake new file mode 100644 index 000000000..2ae280bdc --- /dev/null +++ b/ports/font-chef/portfile.cmake @@ -0,0 +1,23 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO mobius3/font-chef + REF v1.0.1 + SHA512 0d73d095a2f6346cde5fc58a07be7cbe2c180ab5c83a4af21f765a6be1e9dcc5a403fa1d4c64f71dad5609eb72c8b05df8606b4035fceadca74fe6a87bb8efef + HEAD_REF master +) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA +) + +vcpkg_install_cmake() + +vcpkg_fixup_cmake_targets(CONFIG_PATH "lib/cmake/${PORT}") + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") + file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") +endif() + +file(INSTALL ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) -- cgit v1.2.3