summaryrefslogtreecommitdiff
path: root/setup-abuild
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2024-08-03 20:26:42 -0500
committerZach van Rijn <me@zv.io>2024-08-03 20:26:42 -0500
commitd0900a87fe3445d1a15f9557afaff45105c1926d (patch)
tree0536d25caef6e6d414ceb31cf904f2f1c51a5363 /setup-abuild
parent44b33f5f34c9abe31f38740e5ca55f33a3b5c750 (diff)
downloadbootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.tar.gz
bootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.tar.bz2
bootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.tar.xz
bootstrap-d0900a87fe3445d1a15f9557afaff45105c1926d.zip
setup-abuild: work around upstream 500 error.
Diffstat (limited to 'setup-abuild')
-rwxr-xr-xsetup-abuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/setup-abuild b/setup-abuild
index 1e8af8d..2b61aaf 100755
--- a/setup-abuild
+++ b/setup-abuild
@@ -213,12 +213,18 @@ rm -fr ${nsam}-${vsam};
##
# muon (meson replacement)
#
+# Temporarily using tarball archive download:
+#
+# fatal: unable to access 'https://git.sr.ht/~lattis/muon/':
+# The requested URL returned error: 500
+#
nmun=muon;
vmun=834460da03dd4a0c5b4570ca905780ce191c2443;
test ! -f ._${nmun}-${vmun} &&
(
test ! -d ${nmun}-${vmun} \
- && git clone https://git.sr.ht/~lattis/${nmun} ${nmun}-${vmun} \
+ && curl -sL https://git.sr.ht/~lattis/${nmun}/archive/${vmun}.tar.gz \
+ | tar -xzf - \
;
cd ${nmun}-${vmun};
sed -i bootstrap.sh \