[pngwriter][WIP] add port (#3600)

* [pngwriter] add port

* [pngwriter] Fix x86-windows builds. Improve cmake target fixups.
This commit is contained in:
Stefano Sinigardi 2018-07-04 09:58:26 +02:00 committed by Robert Schumacher
parent c0ec4809b1
commit 0a656f6a7a
2 changed files with 32 additions and 0 deletions

4
ports/pngwriter/CONTROL Normal file
View File

@ -0,0 +1,4 @@
Source: pngwriter
Version: 0.7.0-1
Build-Depends: zlib, libpng, freetype
Description: PNGwriter is a very easy to use open source graphics library that uses PNG as its output format

View File

@ -0,0 +1,28 @@
include(vcpkg_common_functions)
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
message("Only static linkage is supported by pngwriter.")
set(VCPKG_LIBRARY_LINKAGE static)
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO pngwriter/pngwriter
REF 0.7.0
SHA512 3e4ef098e4d715d18844cada64f32dbf079fdd1f7a64b6fe5e19584094f6b2a61f80c53804f936b6eefd7ef9dad4a01a7210b1273939d385a0850e48f8ba6683
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/PNGwriter)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
# Handle copyright
file(INSTALL ${SOURCE_PATH}/doc/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/pngwriter RENAME copyright)