⬆️ Updated tools

This commit is contained in:
Edgar 2025-04-18 15:19:20 +02:00
parent 7f6790fe84
commit c2edc07ae5
No known key found for this signature in database
GPG Key ID: 3C2E1F2C1C353131
9 changed files with 24 additions and 5 deletions

View File

@ -12,6 +12,7 @@ set(TOOLS
"rami3l/pacaptr"
"Doctave/doctave"
"go-gitea/gitea"
"zyedidia/eget"
)
set(EXTRA_TOOLS

View File

@ -58,6 +58,12 @@ Repo: https://github.com/go-gitea/gitea
`curl "https://git.anotherfoxguy.com/AnotherFoxGuy/install-scripts/raw/branch/main/install-gitea.sh" | sudo bash`
### eget
Repo: https://github.com/zyedidia/eget
`curl "https://git.anotherfoxguy.com/AnotherFoxGuy/install-scripts/raw/branch/main/install-eget.sh" | sudo bash`
### butler
Repo: https://github.com/itchio/butler

View File

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/Kitware/CMake/releases/download/v3.31.5/cmake-3.31.5-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
wget "https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local

6
install-eget.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
set -eu
wget "https://github.com/zyedidia/eget/releases/download/v1.3.4/eget-1.3.4-linux_amd64.tar.gz" -nv -O /tmp/eget.tar.gz
tar xvzf /tmp/eget.tar.gz -C /tmp/eget
install -m 755 /tmp/eget/eget-1.3.4-linux_amd64/eget /usr/local/bin/

View File

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/go-gitea/gitea/releases/download/v1.23.3/gitea-1.23.3-linux-amd64" -nv -O /tmp/gitea
wget "https://github.com/go-gitea/gitea/releases/download/v1.23.7/gitea-1.23.7-linux-amd64" -nv -O /tmp/gitea
install -m 755 /tmp/gitea /usr/local/bin/

View File

@ -2,6 +2,6 @@
set -eu
mkdir -p /tmp/lazygit
wget "https://github.com/jesseduffield/lazygit/releases/download/v0.46.0/lazygit_0.46.0_Linux_x86_64.tar.gz" -nv -O /tmp/lazygit.tar.gz
wget "https://github.com/jesseduffield/lazygit/releases/download/v0.49.0/lazygit_0.49.0_Linux_x86_64.tar.gz" -nv -O /tmp/lazygit.tar.gz
tar xvzf /tmp/lazygit.tar.gz -C /tmp/lazygit
install -m 755 /tmp/lazygit/lazygit /usr/local/bin/

View File

@ -2,6 +2,6 @@
set -eu
mkdir -p /tmp/pacaptr
wget "https://github.com/rami3l/pacaptr/releases/download/v0.22.0/pacaptr-linux-amd64.tar.gz" -nv -O /tmp/pacaptr.tar.gz
wget "https://github.com/rami3l/pacaptr/releases/download/v0.23.0/pacaptr-linux-amd64.tar.gz" -nv -O /tmp/pacaptr.tar.gz
tar xvzf /tmp/pacaptr.tar.gz -C /tmp/pacaptr
install -m 755 /tmp/pacaptr/pacaptr /usr/local/bin/fakeman

View File

@ -2,6 +2,6 @@
set -eu
mkdir -p /tmp/sccache
wget "https://github.com/mozilla/sccache/releases/download/v0.9.1/sccache-v0.9.1-x86_64-unknown-linux-musl.tar.gz" -nv -O /tmp/sccache.tar.gz
wget "https://github.com/mozilla/sccache/releases/download/v0.10.0/sccache-v0.10.0-x86_64-unknown-linux-musl.tar.gz" -nv -O /tmp/sccache.tar.gz
tar xvzf /tmp/sccache.tar.gz --strip 1 -C /tmp/sccache
install -m 755 /tmp/sccache/sccache /usr/local/bin/

View File

@ -0,0 +1,6 @@
#!/bin/bash
set -eu
wget "https://github.com/zyedidia/eget/releases/download/v@VERSION@/eget-@VERSION@-linux_amd64.tar.gz" -nv -O /tmp/eget.tar.gz
tar xvzf /tmp/eget.tar.gz -C /tmp/eget
install -m 755 /tmp/eget/eget-@VERSION@-linux_amd64/eget /usr/local/bin/