Compare commits

38 Commits
tap ... main

Author SHA1 Message Date
c2edc07ae5 ⬆️ Updated tools 2025-04-18 15:19:20 +02:00
7f6790fe84 ⬆️ Updated tools 2025-02-06 10:32:10 +01:00
214d88e51a ⬆️ Updated tools 2025-01-08 13:06:57 +01:00
0a2e22e382 ⬆️ Updated tools 2024-11-28 18:15:00 +01:00
9a7f28d586 🎉 Added gitea 2024-07-19 12:23:09 +02:00
124bd21bfe ⬆️ Updated tools 2024-05-26 10:39:40 +02:00
1aea187d9c ⬆️ Updated tools 2024-04-28 14:18:04 +02:00
77f004c2a2 ⬆️ Updated tools 2024-03-24 12:02:34 +01:00
21a06f4300 ⬆️ Updated sccache 2024-01-24 16:40:44 +01:00
304fec5dfd ⬆️ Updated tools 2024-01-17 10:46:25 +01:00
4ffdb90e31 ⬆️ Updated tools 2024-01-03 11:59:53 +01:00
77bf0f81de ⬆️ Updated tools 2023-12-07 13:34:12 +01:00
f09e465457 ⬆️ Updated tools 2023-10-20 11:57:45 +02:00
75cfec61de ⬆️ Updated cmake 2023-09-25 13:54:08 +02:00
019f7bcda3 ⬆️ Updated tools 2023-08-28 12:13:06 +02:00
31340e8d10 ⬆️ Updated tools 2023-07-23 11:09:19 +02:00
2661cbe4f8 ⬆️ Updated tools 2023-06-03 16:06:00 +02:00
3cd339543e ⬆️ Updated tools 2023-05-23 10:10:12 +02:00
15a6ca55f1 ⬆️ Updated tools 2023-05-02 10:38:42 +02:00
422afa3beb ⬆️ Updated tools 2023-04-11 11:11:31 +02:00
2343769a29 ⬆️ Updated tools 2023-03-21 11:17:16 +01:00
78a9622869 🎉 Added installer for conan 2.0 2023-03-10 10:25:27 +01:00
139f78e26a ⬆️ Updated tools 2023-02-02 11:08:52 +01:00
cfe7e7c5f4 ⬆️ Updated sccache 2023-01-02 15:32:45 +01:00
050a5a4b37 ⬆️ Updated cmake 2022-12-05 10:10:03 +01:00
5a50d94575 ⬆️ Updated tools 2022-11-14 14:24:25 +01:00
0b6df9cf90 ⬆️ Updated lazydocker 2022-10-14 20:01:09 +02:00
f31036872d ⬆️ Updated tools 2022-10-10 12:20:54 +02:00
8083cb43f9 ⬆️ Update cmake 2022-08-31 17:10:41 +02:00
96883bc95f ⬆️ Updated tools 2022-08-09 17:22:59 +02:00
ee8d90601c ⬆️ Updated tools 2022-07-21 11:16:34 +02:00
ac1e6a11e6 ⬆️ Updated tools 2022-05-12 10:45:48 +02:00
7aa5b72532 ⬆️ Updated tools 2022-05-05 19:14:25 +02:00
e3c8b5bb1f ⬆️ Updated tools 2022-03-22 16:29:11 +01:00
ff28da95fc 🐛 Fixed cmake install 2022-02-13 19:13:52 +01:00
b83a6ec43f ⬆️ Updated tools 2022-02-12 18:08:04 +01:00
2ff27d6976 ⬆️ Updated lazygit 2022-01-17 15:43:47 +00:00
dc88f9d608 🎉 Added doctave 2022-01-17 15:43:28 +00:00
18 changed files with 74 additions and 17 deletions

View File

@ -10,6 +10,9 @@ set(TOOLS
"jesseduffield/lazydocker"
"svenstaro/miniserve"
"rami3l/pacaptr"
"Doctave/doctave"
"go-gitea/gitea"
"zyedidia/eget"
)
set(EXTRA_TOOLS

View File

@ -46,6 +46,24 @@ 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`
### gitea
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.22.1/cmake-3.22.1-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

View File

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/conan-io/conan/releases/latest/download/conan-ubuntu-64.deb" -nv -O /tmp/conan.deb
dpkg -i /tmp/conan.deb
wget "https://github.com/AnotherFoxGuy/conan-onefile/releases/latest/download/conan-linux" -nv -O /tmp/conan
install -m 755 /tmp/conan /usr/local/bin/

5
install-conan2.0.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/conan-io/conan/releases/latest/download/conan-ubuntu-64.deb" -nv -O /tmp/conan.deb
dpkg -i /tmp/conan.deb

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.2/doctave-0.4.2-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.2-x86_64-unknown-linux-musl/doctave /usr/local/bin/

View File

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/muesli/duf/releases/download/v0.7.0/duf_0.7.0_linux_amd64.deb" -nv -O /tmp/duf.deb
wget "https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_linux_amd64.deb" -nv -O /tmp/duf.deb
dpkg -i /tmp/duf.deb

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/

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.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/lazydocker
wget "https://github.com/jesseduffield/lazydocker/releases/download/v0.12/lazydocker_0.12_Linux_x86_64.tar.gz" -nv -O /tmp/lazydocker.tar.gz
wget "https://github.com/jesseduffield/lazydocker/releases/download/v0.24.1/lazydocker_0.24.1_Linux_x86_64.tar.gz" -nv -O /tmp/lazydocker.tar.gz
tar xvzf /tmp/lazydocker.tar.gz -C /tmp/lazydocker
install -m 755 /tmp/lazydocker/lazydocker /usr/local/bin/

View File

@ -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.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

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/svenstaro/miniserve/releases/download/v0.18.0/miniserve-v0.18.0-x86_64-unknown-linux-musl" -nv -O /tmp/miniserve
wget "https://github.com/svenstaro/miniserve/releases/download/v0.29.0/miniserve-v0.29.0-x86_64-unknown-linux-musl" -nv -O /tmp/miniserve
install -m 755 /tmp/miniserve /usr/local/bin/

View File

@ -2,6 +2,6 @@
set -eu
mkdir -p /tmp/pacaptr
wget "https://github.com/rami3l/pacaptr/releases/download/v0.14.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.2.15/sccache-v0.2.15-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,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/

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/

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/

View File

@ -4,13 +4,8 @@ endmacro()
mgs("TOOL \"${TOOL}\" OWNER \"${OWNER}\"")
SET(URL "https://api.github.com/repos/${OWNER}/${TOOL}/releases/latest")
execute_process(COMMAND curl -s -L ${URL} OUTPUT_VARIABLE VERSION_JSON)
string(JSON VERSION_DIRTY GET ${VERSION_JSON} tag_name)
string(REGEX REPLACE [^0-9\\.] "" VERSION "${VERSION_DIRTY}")
string(REPLACE "." "_" VERSION_UNDERSCORE ${VERSION})
execute_process(COMMAND lastversion "${OWNER}/${TOOL}" OUTPUT_VARIABLE VERSION)
string(REPLACE "\n" "" VERSION "${VERSION}")
mgs("Latest VERSION ${VERSION}")
configure_file("${CMAKE_CURRENT_LIST_DIR}/templates/install-${TOOL}.sh.in" "${CMAKE_CURRENT_LIST_DIR}/install-${TOOL}.sh" @ONLY)