[Tweeny] Added Tweeny port (#8341)

* [Tweeny] Added Tweeny port

* Removed include(vcpkg_common_functions), replaced file() calls with vcpkg_fixup_cmake_targets
This commit is contained in:
Vinny 2019-09-26 17:24:54 -04:00 committed by Griffin Downs
parent 22389a4690
commit 20db9806c6
2 changed files with 27 additions and 0 deletions

4
ports/tweeny/CONTROL Normal file
View File

@ -0,0 +1,4 @@
Source: tweeny
Version: 3.0
Description: A modern C++ tweening library
Homepage: https://github.com/mobius3/tweeny

View File

@ -0,0 +1,23 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO mobius3/tweeny
REF v3
SHA512 41f2562a0e55b0fd2c219fab384bf46f70432abb47953b5ac768a29b2ea7b790c6aa56fd44c1fef583f6fa2011010d7dd7e637bcd2d8a9be5c9638a7f2ce7436
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH "/lib/cmake/Tweeny/")
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug ${CURRENT_PACKAGES_DIR}/lib)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/cmake/Tweeny)
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/tweeny RENAME copyright)