aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/imageinfo/portfile.cmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/imageinfo/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/imageinfo/portfile.cmake')
-rw-r--r--vcpkg/ports/imageinfo/portfile.cmake33
1 files changed, 33 insertions, 0 deletions
diff --git a/vcpkg/ports/imageinfo/portfile.cmake b/vcpkg/ports/imageinfo/portfile.cmake
new file mode 100644
index 0000000..0479fae
--- /dev/null
+++ b/vcpkg/ports/imageinfo/portfile.cmake
@@ -0,0 +1,33 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO xiaozhuai/imageinfo
+ REF 4e772f7d7d4453028c71f90e1783c390f5d78adf # committed on 2024-12-02
+ SHA512 6ef9041a450c516ba84c5ccb4d96a2f5e27c0b45164e1db38b8df6adfeaec1725b76677955e8b2bf4d73842162cecf734ee25163af21eeeb045af48af92ba821
+ HEAD_REF master
+)
+
+set(VCPKG_BUILD_TYPE release) # header-only port
+
+vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ tools IMAGEINFO_BUILD_TOOLS
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DIMAGEINFO_BUILD_INSTALL=ON
+ -DIMAGEINFO_BUILD_TESTS=OFF
+ ${FEATURE_OPTIONS}
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup()
+if("tools" IN_LIST FEATURES)
+ vcpkg_copy_tools(TOOL_NAMES imageinfo AUTO_CLEAN)
+endif()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
+file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")