Compare commits
2 Commits
71e08f0f92
...
2ff27d6976
Author | SHA1 | Date | |
---|---|---|---|
2ff27d6976 | |||
dc88f9d608 |
@@ -10,6 +10,7 @@ set(TOOLS
|
||||
"jesseduffield/lazydocker"
|
||||
"svenstaro/miniserve"
|
||||
"rami3l/pacaptr"
|
||||
"Doctave/doctave"
|
||||
)
|
||||
|
||||
set(EXTRA_TOOLS
|
||||
|
@@ -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`
|
||||
|
||||
### doctave
|
||||
|
||||
Repo: https://github.com/Doctave/doctave
|
||||
|
||||
`curl "https://git.anotherfoxguy.com/AnotherFoxGuy/install-scripts/raw/branch/main/install-doctave.sh" | sudo bash`
|
||||
|
||||
### butler
|
||||
|
||||
Repo: https://github.com/itchio/butler
|
||||
|
7
install-doctave.sh
Normal file
7
install-doctave.sh
Normal 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/
|
@@ -2,6 +2,6 @@
|
||||
set -eu
|
||||
|
||||
mkdir -p /tmp/lazygit
|
||||
wget "https://github.com/jesseduffield/lazygit/releases/download/v0.32/lazygit_0.32_Linux_x86_64.tar.gz" -nv -O /tmp/lazygit.tar.gz
|
||||
wget "https://github.com/jesseduffield/lazygit/releases/download/v0.32.2/lazygit_0.32.2_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/
|
||||
|
7
templates/install-doctave.sh.in
Normal file
7
templates/install-doctave.sh.in
Normal 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/
|
Reference in New Issue
Block a user