From 20db9806c6a891558009d8b166f2f92f74599a12 Mon Sep 17 00:00:00 2001 From: Vinny Date: Thu, 26 Sep 2019 17:24:54 -0400 Subject: [Tweeny] Added Tweeny port (#8341) * [Tweeny] Added Tweeny port * Removed include(vcpkg_common_functions), replaced file() calls with vcpkg_fixup_cmake_targets --- ports/tweeny/CONTROL | 4 ++++ ports/tweeny/portfile.cmake | 23 +++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 ports/tweeny/CONTROL create mode 100644 ports/tweeny/portfile.cmake diff --git a/ports/tweeny/CONTROL b/ports/tweeny/CONTROL new file mode 100644 index 000000000..19773fc6b --- /dev/null +++ b/ports/tweeny/CONTROL @@ -0,0 +1,4 @@ +Source: tweeny +Version: 3.0 +Description: A modern C++ tweening library +Homepage: https://github.com/mobius3/tweeny \ No newline at end of file diff --git a/ports/tweeny/portfile.cmake b/ports/tweeny/portfile.cmake new file mode 100644 index 000000000..016c3be40 --- /dev/null +++ b/ports/tweeny/portfile.cmake @@ -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) -- cgit v1.2.3