aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/breakpad/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/breakpad/portfile.cmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/breakpad/portfile.cmake')
-rw-r--r--vcpkg/ports/breakpad/portfile.cmake69
1 files changed, 69 insertions, 0 deletions
diff --git a/vcpkg/ports/breakpad/portfile.cmake b/vcpkg/ports/breakpad/portfile.cmake
new file mode 100644
index 0000000..112a9ee
--- /dev/null
+++ b/vcpkg/ports/breakpad/portfile.cmake
@@ -0,0 +1,69 @@
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+string(REPLACE "-" "." BREAKPAD-VERSION "${VERSION}")
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO google/breakpad
+ REF "v${BREAKPAD-VERSION}"
+ SHA512 88c691983c6c92fd5321d729c8eec059914293de0e91fe1d429a6247f3b7299f32ec4938eccbbe2c95a9ca507db14d73a1c9798d5fce79a8b474c3c216f0951a
+ HEAD_REF master
+ PATCHES
+ add-algorithm-1.patch
+)
+
+if(VCPKG_HOST_IS_LINUX OR VCPKG_TARGET_IS_LINUX OR VCPKG_TARGET_IS_ANDROID)
+ vcpkg_from_git(
+ OUT_SOURCE_PATH LSS_SOURCE_PATH
+ URL https://chromium.googlesource.com/linux-syscall-support
+ REF 9719c1e1e676814c456b55f5f070eabad6709d31
+ )
+
+ file(RENAME "${LSS_SOURCE_PATH}" "${SOURCE_PATH}/src/third_party/lss")
+endif()
+
+file(COPY
+ "${CMAKE_CURRENT_LIST_DIR}/check_getcontext.cc"
+ "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt"
+ "${CMAKE_CURRENT_LIST_DIR}/unofficial-breakpadConfig.cmake"
+ DESTINATION
+ "${SOURCE_PATH}")
+
+vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
+ FEATURES
+ "tools" INSTALL_TOOLS
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ ${FEATURE_OPTIONS}
+ OPTIONS_RELEASE
+ -DINSTALL_HEADERS=ON
+)
+
+vcpkg_cmake_install()
+file(REMOVE_RECURSE
+ "${CURRENT_PACKAGES_DIR}/include/client/linux/data"
+ "${CURRENT_PACKAGES_DIR}/include/client/linux/sender")
+
+if("tools" IN_LIST FEATURES)
+ vcpkg_copy_tools(
+ TOOL_NAMES
+ microdump_stackwalk
+ minidump_dump
+ minidump_stackwalk
+ core2md
+ pid2md
+ dump_syms
+ minidump-2-core
+ minidump_upload
+ sym_upload
+ core_handler
+ AUTO_CLEAN)
+endif()
+
+vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-breakpad)
+
+vcpkg_copy_pdbs()
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")