Add tmxparser port (#4512)

* Add tmxparser port

* [tmxparser] Keep only one flavor
This commit is contained in:
Ashley Davis 2018-10-20 21:17:45 +01:00 committed by Robert Schumacher
parent dac6bba3f6
commit fb4c51f997
2 changed files with 41 additions and 0 deletions

4
ports/tmxparser/CONTROL Normal file
View File

@ -0,0 +1,4 @@
Source: tmxparser
Version: 2.1.0-1
Description: C++11 library for parsing the maps generated by the Map Editor called Tiled.
Build-Depends: zlib, tinyxml2

View File

@ -0,0 +1,37 @@
include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO sainteos/tmxparser
REF v2.1.0
HEAD_REF master
SHA512 011cce3bb98057f8e2a0a82863fedb7c4b9e41324d5cfa6daade4d000c3f6c8c157da7b153f7f2564ecdefe8019fc8446c9b1b8a675be04329b04a0891ee1c27
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
vcpkg_copy_pdbs()
file(REMOVE_RECURSE
${CURRENT_PACKAGES_DIR}/debug/include
${CURRENT_PACKAGES_DIR}/debug/share
)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(GLOB LIBS ${CURRENT_PACKAGES_DIR}/lib/*.so* ${CURRENT_PACKAGES_DIR}/debug/lib/*.so*)
if(LIBS)
file(REMOVE ${LIBS})
endif()
else()
file(GLOB LIBS ${CURRENT_PACKAGES_DIR}/lib/*.a ${CURRENT_PACKAGES_DIR}/debug/lib/*.a)
if(LIBS)
file(REMOVE ${LIBS})
endif()
endif()
# Handle copyright
configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/tmxparser/copyright COPYONLY)