🎉 Added gitea

This commit is contained in:
Edgar 2024-07-19 12:23:09 +02:00
parent 124bd21bfe
commit 9a7f28d586
No known key found for this signature in database
GPG Key ID: 9AA5DDFFCBDCE46A
4 changed files with 17 additions and 0 deletions

View File

@ -11,6 +11,7 @@ set(TOOLS
"svenstaro/miniserve" "svenstaro/miniserve"
"rami3l/pacaptr" "rami3l/pacaptr"
"Doctave/doctave" "Doctave/doctave"
"go-gitea/gitea"
) )
set(EXTRA_TOOLS set(EXTRA_TOOLS

View File

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

5
install-gitea.sh Normal file
View File

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

View File

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