🎉 Added lazygit
Signed-off-by: Edgar <Edgar@AnotherFoxGuy.com>
This commit is contained in:
parent
1a93a87755
commit
48b0a952cb
5
Makefile
5
Makefile
@ -1,7 +1,10 @@
|
||||
all : cmake sccache
|
||||
all : cmake sccache lazygit
|
||||
|
||||
cmake:
|
||||
cmake -DTOOL=cmake -DREPO=kitware -P update.cmake
|
||||
|
||||
sccache:
|
||||
cmake -DTOOL=sccache -DREPO=mozilla -P update.cmake
|
||||
|
||||
lazygit:
|
||||
cmake -DTOOL=lazygit -DREPO=jesseduffield -P update.cmake
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
set -eu
|
||||
|
||||
wget "https://github.com/Kitware/CMake/releases/download/v3.20.4/cmake-3.20.4-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
|
||||
wget "https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
|
||||
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local
|
||||
|
7
install-lazygit.sh
Normal file
7
install-lazygit.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
set -eu
|
||||
|
||||
mkdir -p /tmp/lazygit
|
||||
wget "https://github.com/jesseduffield/lazygit/releases/download/v0.28.2/lazygit_0.28.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-lazygit.sh.in
Normal file
7
templates/install-lazygit.sh.in
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
set -eu
|
||||
|
||||
mkdir -p /tmp/lazygit
|
||||
wget "https://github.com/jesseduffield/lazygit/releases/download/v@VERSION@/lazygit_@VERSION@_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/
|
Loading…
x
Reference in New Issue
Block a user