mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:49:05 +08:00
[tinyexr] Initial port
This commit is contained in:
parent
d25de95dc1
commit
e78d213175
3
ports/tinyexr/CONTROL
Normal file
3
ports/tinyexr/CONTROL
Normal 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
5
ports/tinyexr/copyright
Normal 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.
|
14
ports/tinyexr/portfile.cmake
Normal file
14
ports/tinyexr/portfile.cmake
Normal 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)
|
Loading…
Reference in New Issue
Block a user