Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gf] Add the new package GF #12426

Merged
merged 11 commits into from
Jul 31, 2020
Merged
6 changes: 6 additions & 0 deletions ports/gamedev-framework/CONTROL
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Source: gamedev-framework
Version: 0.17
Homepage: https:/GamedevFramework/gf
Description: gf is a framework to build 2D games in C++14.
Build-Depends: sdl2, freetype, zlib, boost-algorithm, boost-filesystem, boost-heap, boost-container, stb, pugixml
Supports: !arm
48 changes: 48 additions & 0 deletions ports/gamedev-framework/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
vcpkg_fail_port_install(
ON_ARCH "arm"
)

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO GamedevFramework/gf
HEAD_REF master
REF v0.17.4
SHA512 b35e0fef3c9dc397ec43132dcd6ca87f78217c55d72fc1117b1f530d568ad3537a0f682e285840471faa4e06eb7f396b784da767e83686519d0694b198a86379
)

vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DGF_VCPKG=ON
-DGF_USE_EMBEDDED_LIBS=OFF
-DGF_BUILD_GAMES=OFF
-DGF_BUILD_EXAMPLES=OFF
-DGF_BUILD_TESTS=OFF
-DGF_BUILD_DOCUMENTATION=OFF
-DGF_SINGLE_COMPILTATION_UNIT=ON
-DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS}
OPTIONS_RELEASE -DGF_DEBUG=OFF
OPTIONS_DEBUG -DGF_DEBUG=ON
)

vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/gf)
vcpkg_copy_pdbs()

file(REMOVE_RECURSE
"${CURRENT_PACKAGES_DIR}/debug/share"
"${CURRENT_PACKAGES_DIR}/debug/include"
"${CURRENT_PACKAGES_DIR}/share/doc"
"${CURRENT_PACKAGES_DIR}/debug/bin/gf_info.exe"
"${CURRENT_PACKAGES_DIR}/bin/gf_info.exe"
)

if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE
"${CURRENT_PACKAGES_DIR}/bin"
"${CURRENT_PACKAGES_DIR}/debug/bin"
)
endif()

file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)