[tinyexr] Initial port

This commit is contained in:
Alexander Karatarakis 2017-03-15 14:10:57 -07:00
parent d25de95dc1
commit e78d213175
3 changed files with 22 additions and 0 deletions

3
ports/tinyexr/CONTROL Normal file
View File

@ -0,0 +1,3 @@
Source: tinyexr
Version: v0.9.5-d16ea6
Description: Library to load and save OpenEXR(.exr) images

5
ports/tinyexr/copyright Normal file
View File

@ -0,0 +1,5 @@
3-clause BSD
tinyexr uses miniz, which is developed by Rich Geldreich richgel99@gmail.com, and licensed under public domain.
tinyexr tools uses stb, which is licensed under public domain: https://github.com/nothings/stb tinyexr uses some code from OpenEXR, which is licensed under 3-clause BSD license.

View File

@ -0,0 +1,14 @@
# header-only
include(vcpkg_common_functions)
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/tinyexr-d16ea6347ae78bcee984fb57cab1f023aeda4fb0)
vcpkg_download_distfile(ARCHIVE
URLS "https://github.com/syoyo/tinyexr/archive/d16ea6347ae78bcee984fb57cab1f023aeda4fb0.tar.gz"
FILENAME "tinyexr-v0.9.5-d16ea6.tar.gz"
SHA512 189ab04f6c5fb50c20ac0515a83ee16cba4b0f1bca004db2926281077868d1384e0c54f81768a54b76286a17c1b0c45a0b82acaf22b7ee843dc87c654b09e950
)
vcpkg_extract_source_archive(${ARCHIVE})
file(COPY ${SOURCE_PATH}/tinyexr.h DESTINATION ${CURRENT_PACKAGES_DIR}/include)
# Handle copyright
file(COPY ${CMAKE_CURRENT_LIST_DIR}/copyright DESTINATION ${CURRENT_PACKAGES_DIR}/share/tinyexr)