Skip to content

Instantly share code, notes, and snippets.

@xHasKx
Created July 7, 2025 15:36
Show Gist options
  • Select an option

  • Save xHasKx/5f24c1fe0558aae3838d5e8b4bb0ff12 to your computer and use it in GitHub Desktop.

Select an option

Save xHasKx/5f24c1fe0558aae3838d5e8b4bb0ff12 to your computer and use it in GitHub Desktop.
diff --git a/PKGBUILD b/PKGBUILD
index 9583861..5ce1687 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,8 +20,9 @@ license=('Apache')
source=(
"https://github.com/MisterTea/${_ghname}/archive/${_tarname}-v${pkgver}.tar.gz"
"fix_arch_build_6.2.9.patch"
+ "fix_arch_build_6.2.9-add-cstdint.patch"
)
-sha256sums=('13bfb2722b011b5f0a28fa619508deca96deec9eee5e42b922add0c166d8185a' 'ecec55efdd30f51812f83d3a40937dabd2ea8305c1ab3a9375b2c35fc0156e0c')
+sha256sums=('13bfb2722b011b5f0a28fa619508deca96deec9eee5e42b922add0c166d8185a' 'ecec55efdd30f51812f83d3a40937dabd2ea8305c1ab3a9375b2c35fc0156e0c' '77adefed8a7ac5cceba9c36ccf3ed6c0bb5301ab3018faab4dd331b2cd0dd9b0')
pkgdesc='Remote terminal for the busy and impatient'
prepare() {
@@ -32,6 +33,7 @@ prepare() {
msg2 'Applying patches'
patch -p1 <"${srcdir}/fix_arch_build_6.2.9.patch"
+ patch -p1 <"${srcdir}/fix_arch_build_6.2.9-add-cstdint.patch"
}
build() {
diff --git a/fix_arch_build_6.2.9-add-cstdint.patch b/fix_arch_build_6.2.9-add-cstdint.patch
new file mode 100644
index 0000000..285fb52
--- /dev/null
+++ b/fix_arch_build_6.2.9-add-cstdint.patch
@@ -0,0 +1,13 @@
+diff --git a/external_imported/sentry-native/external/crashpad/util/file/filesystem.h b/external_imported/sentry-native/external/crashpad/util/file/filesystem.h
+--- a/external_imported/sentry-native/external/crashpad/util/file/filesystem.h
++++ b/external_imported/sentry-native/external/crashpad/util/file/filesystem.h
+@@ -19,6 +19,7 @@
+
+ #include "base/files/file_path.h"
+ #include "util/file/file_io.h"
++#include <cstdint>
+
+ namespace crashpad {
+
+--
+2.50.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment