Merge pull request #9925 from mbeutel/feature/bustache

[bustache] Add new port
This commit is contained in:
Robert Schumacher 2020-02-06 14:51:48 -08:00 committed by GitHub
commit fc0e8b95b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

5
ports/bustache/CONTROL Normal file
View File

@ -0,0 +1,5 @@
Source: bustache
Version: 1.1.0
Build-Depends: boost-unordered, boost-utility
Description: C++11 implementation of {{ mustache }}
Homepage: https://github.com/jamboree/bustache

4
ports/bustache/LICENSE Normal file
View File

@ -0,0 +1,4 @@
Copyright (c) 2014-2018 Jamboree
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

View File

@ -0,0 +1,21 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO jamboree/bustache
REF abb25ca189425783c6b7ec5c17c5284dccb59faf
SHA512 be00451f6a85edccacbdd5d8478d7af4f3162f9a9a31af876004237ca7f303c1262b2ea623e6ec595d73440dc14fcf22d185bc521fd3aca6e28ec43890d611c5
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH "${SOURCE_PATH}"
PREFER_NINJA
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH "share/bustache/cmake")
file(REMOVE_RECURSE
"${CURRENT_PACKAGES_DIR}/debug/include"
)
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)