🎉 Added doctave

This commit is contained in:
Edgar 2022-01-17 15:43:28 +00:00
parent 71e08f0f92
commit dc88f9d608
4 changed files with 21 additions and 0 deletions

View File

@ -10,6 +10,7 @@ set(TOOLS
"jesseduffield/lazydocker" "jesseduffield/lazydocker"
"svenstaro/miniserve" "svenstaro/miniserve"
"rami3l/pacaptr" "rami3l/pacaptr"
"Doctave/doctave"
) )
set(EXTRA_TOOLS set(EXTRA_TOOLS

View File

@ -46,6 +46,12 @@ Repo: https://github.com/rami3l/pacaptr
`curl "https://git.anotherfoxguy.com/AnotherFoxGuy/install-scripts/raw/branch/main/install-pacaptr.sh" | sudo bash` `curl "https://git.anotherfoxguy.com/AnotherFoxGuy/install-scripts/raw/branch/main/install-pacaptr.sh" | sudo bash`
### doctave
Repo: https://github.com/Doctave/doctave
`curl "https://git.anotherfoxguy.com/AnotherFoxGuy/install-scripts/raw/branch/main/install-doctave.sh" | sudo bash`
### butler ### butler
Repo: https://github.com/itchio/butler Repo: https://github.com/itchio/butler

7
install-doctave.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
set -eu
mkdir -p /tmp/doctave
wget "https://github.com/Doctave/doctave/releases/download/0.4.1/doctave-0.4.1-x86_64-unknown-linux-musl.tar.gz" -nv -O /tmp/doctave.tar.gz
tar xvzf /tmp/doctave.tar.gz -C /tmp/doctave
install -m 755 /tmp/doctave/doctave-0.4.1-x86_64-unknown-linux-musl/doctave /usr/local/bin/

View File

@ -0,0 +1,7 @@
#!/bin/bash
set -eu
mkdir -p /tmp/doctave
wget "https://github.com/Doctave/doctave/releases/download/@VERSION@/doctave-@VERSION@-x86_64-unknown-linux-musl.tar.gz" -nv -O /tmp/doctave.tar.gz
tar xvzf /tmp/doctave.tar.gz -C /tmp/doctave
install -m 755 /tmp/doctave/doctave-@VERSION@-x86_64-unknown-linux-musl/doctave /usr/local/bin/