summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorGeorge Rawlinson2023-05-22 20:17:43 +1200
committerGeorge Rawlinson2023-05-22 20:17:43 +1200
commite64d69a092da2859938618af9979af9dd5d88e39 (patch)
tree7e65d39a643a2b663bf5c4c9c7dcef8b1a46356b /PKGBUILD
parent5f280e6553d6d49b716101348ef701f462762ed9 (diff)
downloadaur-ottomatic.tar.gz
fix: gcc 13 ftbfs
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 5 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 7c0099ed4ec6..7ee616c613af 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=ottomatic
pkgver=4.0.1
-pkgrel=1
+pkgrel=2
pkgdesc='Save Earth from the clutches of The Giant Brain from Planet X'
arch=('x86_64')
url='https://github.com/jorio/ottomatic'
@@ -34,6 +34,10 @@ prepare() {
git submodule init
git config submodule.Pomme.url "$srcdir/github.com-jorio-Pomme"
git -c protocol.file.allow=always submodule update
+
+ # ftbfs: gcc 13 & cstdint headers
+ cd extern/Pomme
+ git cherry-pick --no-commit d57c28e205462e51063e787f9ebddaadff592f1e
}
build() {