2024-07-14 20:33:56 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
|
|
|
|
function installSW
|
|
|
|
if not type -q yay
|
|
|
|
set -l contextRoot (mktemp -d)
|
2024-07-15 07:41:02 +00:00
|
|
|
pacinst git
|
2024-07-14 20:33:56 +00:00
|
|
|
git clone https://aur.archlinux.org/yay.git "$contextRoot"
|
|
|
|
|
2024-10-06 19:25:34 +00:00
|
|
|
pushd "$contextRoot" >/dev/null
|
2024-07-14 20:33:56 +00:00
|
|
|
makepkg --noconfirm -si
|
2024-10-06 19:25:34 +00:00
|
|
|
popd >/dev/null
|
2024-07-14 20:33:56 +00:00
|
|
|
|
|
|
|
rm -rf "$contextRoot"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-10-13 20:07:44 +00:00
|
|
|
runInstaller --force $argv
|
2024-07-14 20:33:56 +00:00
|
|
|
end
|