⬆️ Updated tools
This commit is contained in:
parent
7f6790fe84
commit
c2edc07ae5
@ -12,6 +12,7 @@ set(TOOLS
|
|||||||
"rami3l/pacaptr"
|
"rami3l/pacaptr"
|
||||||
"Doctave/doctave"
|
"Doctave/doctave"
|
||||||
"go-gitea/gitea"
|
"go-gitea/gitea"
|
||||||
|
"zyedidia/eget"
|
||||||
)
|
)
|
||||||
|
|
||||||
set(EXTRA_TOOLS
|
set(EXTRA_TOOLS
|
||||||
|
@ -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`
|
`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
|
### butler
|
||||||
|
|
||||||
Repo: https://github.com/itchio/butler
|
Repo: https://github.com/itchio/butler
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
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
|
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local
|
||||||
|
6
install-eget.sh
Normal file
6
install-eget.sh
Normal 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/
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
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/
|
install -m 755 /tmp/gitea /usr/local/bin/
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
mkdir -p /tmp/lazygit
|
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
|
tar xvzf /tmp/lazygit.tar.gz -C /tmp/lazygit
|
||||||
install -m 755 /tmp/lazygit/lazygit /usr/local/bin/
|
install -m 755 /tmp/lazygit/lazygit /usr/local/bin/
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
mkdir -p /tmp/pacaptr
|
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
|
tar xvzf /tmp/pacaptr.tar.gz -C /tmp/pacaptr
|
||||||
install -m 755 /tmp/pacaptr/pacaptr /usr/local/bin/fakeman
|
install -m 755 /tmp/pacaptr/pacaptr /usr/local/bin/fakeman
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
mkdir -p /tmp/sccache
|
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
|
tar xvzf /tmp/sccache.tar.gz --strip 1 -C /tmp/sccache
|
||||||
install -m 755 /tmp/sccache/sccache /usr/local/bin/
|
install -m 755 /tmp/sccache/sccache /usr/local/bin/
|
||||||
|
6
templates/install-eget.sh.in
Normal file
6
templates/install-eget.sh.in
Normal 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/
|
Loading…
x
Reference in New Issue
Block a user