aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/tinycbor/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/tinycbor/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/tinycbor/portfile.cmake')
-rw-r--r--vcpkg/ports/tinycbor/portfile.cmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/vcpkg/ports/tinycbor/portfile.cmake b/vcpkg/ports/tinycbor/portfile.cmake
new file mode 100644
index 0000000..4a3ac12
--- /dev/null
+++ b/vcpkg/ports/tinycbor/portfile.cmake
@@ -0,0 +1,20 @@
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO intel/tinycbor
+ REF "v${VERSION}"
+ SHA512 7c7fff9c1e9a2f04a3bb0247b79723526685b2821df720d0211c8e86b1a516c955926b3668fa6dcdaaf6cb811aff238db39a9add1bc12a4d32f8a51741f3f2ce
+ HEAD_REF master
+)
+
+file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
+
+vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}")
+
+vcpkg_cmake_install()
+
+# Remove duplicated include headers
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
+
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)