aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/tinytiff
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/tinytiff')
-rw-r--r--vcpkg/ports/tinytiff/portfile.cmake34
-rw-r--r--vcpkg/ports/tinytiff/usage7
-rw-r--r--vcpkg/ports/tinytiff/vcpkg.json23
3 files changed, 64 insertions, 0 deletions
diff --git a/vcpkg/ports/tinytiff/portfile.cmake b/vcpkg/ports/tinytiff/portfile.cmake
new file mode 100644
index 0000000..6369309
--- /dev/null
+++ b/vcpkg/ports/tinytiff/portfile.cmake
@@ -0,0 +1,34 @@
+vcpkg_check_features(
+ OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ winapi TinyTIFF_USE_WINAPI_FOR_FILEIO
+)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO jkriege2/TinyTIFF
+ REF ${VERSION}
+ SHA512 9a6a00a1278e7040bf3057f069e6d4f106a15982c78c84112edfdbe8ca9a28d849fc63636d8011696dbf4059c5d9b205743fd77ece859d08b9dd33945835be54
+ HEAD_REF master
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ ${FEATURE_OPTIONS}
+ -DTinyTIFF_BUILD_TESTS=OFF
+)
+
+vcpkg_cmake_install()
+
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/TinyTIFF DO_NOT_DELETE_PARENT_CONFIG_PATH)
+vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/TinyTIFFXX PACKAGE_NAME tinytiffxx)
+
+vcpkg_copy_pdbs()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
+
+file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
diff --git a/vcpkg/ports/tinytiff/usage b/vcpkg/ports/tinytiff/usage
new file mode 100644
index 0000000..09fa42a
--- /dev/null
+++ b/vcpkg/ports/tinytiff/usage
@@ -0,0 +1,7 @@
+tinytiff provides CMake targets:
+
+ find_package(TinyTIFF CONFIG REQUIRED)
+ find_package(TinyTIFFXX CONFIG REQUIRED)
+
+ target_link_libraries(main PRIVATE TinyTIFF::TinyTIFF TinyTIFF::TinyTIFFXX)
+ \ No newline at end of file
diff --git a/vcpkg/ports/tinytiff/vcpkg.json b/vcpkg/ports/tinytiff/vcpkg.json
new file mode 100644
index 0000000..c1abef9
--- /dev/null
+++ b/vcpkg/ports/tinytiff/vcpkg.json
@@ -0,0 +1,23 @@
+{
+ "name": "tinytiff",
+ "version": "4.0.1.0",
+ "description": "Lightweight TIFF reader/writer library",
+ "homepage": "https://jkriege2.github.io/TinyTIFF/",
+ "license": "LGPL-3.0",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ],
+ "features": {
+ "winapi": {
+ "description": "Use WIN-API for File-IO",
+ "supports": "windows"
+ }
+ }
+}