fixing up bootstrappign scripts

This commit is contained in:
Matthew Ryan Dillon 2023-09-03 13:55:53 -04:00
parent 12dabf43e9
commit 651c566ae9
4 changed files with 36 additions and 8 deletions

View file

@ -1,5 +1,8 @@
{{ if eq .chezmoi.hostname "devterm" -}}
#!/bin/sh
set -e
{{ if eq .chezmoi.hostname "devterm" -}}
sudo apt install \
brightnessctl \
git \
@ -12,8 +15,8 @@ sudo apt install \
wget \
zsh \
-y
{{ else if eq .chezmoi.hostname "rattusrattus" -}}
#!/bin/sh
sudo port install \
colima \
curl \
@ -27,20 +30,18 @@ sudo port install \
wget \
zellij \
zsh
{{ else if eq .chezmoi.hostname "yersiniapestis" -}}
#!/bin/sh
sudo apt update
sudo apt install \
build-essential \
clang \
libssl-dev \
pkg-config \
ripgrep \
tmux \
tree \
wget \
-y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /tmp/rustup.sh && chmod u+x /tmp/rustup.sh && /tmp/rustup.sh -y && rustup update stable
git clone https://github.com/helix-editor/helix.git --branch 23.05 $HOME/.src/helix
export PATH=$PATH:$HOME/.cargo/bin && cd $HOME/.src/helix && cargo install --path helix-term --locked && hx --grammar fetch && hx --grammar build
# git clone ssh://git@pingo.thermokar.st/gwar $HOME/.src/gwar && cd $HOME/.src/gwar && cargo build --release && cp target/release/gwar ~/bin
{{ end }}

View file

@ -0,0 +1,8 @@
#!/bin/sh
set -e
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o /tmp/rustup.sh && \
chmod u+x /tmp/rustup.sh && \
/tmp/rustup.sh -y && \
rustup update stable

View file

@ -0,0 +1,11 @@
#!/bin/sh
set -e
if [ ! -d $HOME/.src/gwar ] ; then
git clone ssh://git@pingo.thermokar.st/gwar $HOME/.src/gwar
fi
cd $HOME/.src/gwar
cargo build --release
cp target/release/gwar ~/bin

View file

@ -0,0 +1,8 @@
#!/bin/sh
git clone https://github.com/helix-editor/helix.git --branch 23.05 $HOME/.src/helix
export PATH=$PATH:$HOME/.cargo/bin
cd $HOME/.src/helix
cargo install --path helix-term --locked
hx --grammar fetch
hx --grammar build