blob: 6fca2f9fb85f3559cbbd98a94192f3f98611d62f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
. (dirname (status filename))/../util.fish
function confirm-overwrite -a path
if test -e $path
read -l -p "input '$(realpath $path) already exists. Overwrite? [y/N] ' -n" confirm
if test "$confirm" = 'y' -o "$confirm" = 'Y'
log 'Continuing.'
test -z "$argv[2]" && rm -rf $path # If a second arg is provided, don't delete
else
log 'Exiting.'
exit
end
end
end
function install-deps
# All dependencies already installed
pacman -Q $argv &> /dev/null && return
for dep in $argv
# Skip if already installed
if ! pacman -Q $dep &> /dev/null
# If pacman can install it, use it, otherwise use an AUR helper
if pacman -Si $dep &> /dev/null
log "Installing dependency '$dep'"
sudo pacman -S --noconfirm $dep
else
# Get AUR helper or install if none
which yay &> /dev/null && set -l helper yay || set -l helper paru
if ! which $helper &> /dev/null
warn 'No AUR helper found'
read -l -p "input 'Install yay? [Y/n] ' -n" confirm
if test "$confirm" = 'n' -o "$confirm" = 'N'
warn "Manually install yay or paru and try again."
warn "Alternatively, install the dependencies '$argv' manually and try again."
exit
else
sudo pacman -S --needed git base-devel
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
cd ..
rm -rf yay
# First use, see https://github.com/Jguer/yay?tab=readme-ov-file#first-use
yay -Y --gendb
yay -Y --devel --save
end
end
log "Installing dependency '$dep'"
$helper -S --noconfirm $dep
end
end
end
end
function install-optional-deps
for dep in $argv
set -l dep_name (string split -f 1 ' ' $dep)
if ! pacman -Q $dep_name &> /dev/null
read -l -p "input 'Install $dep? [Y/n] ' -n" confirm
test "$confirm" != 'n' -a "$confirm" != 'N' && install-deps $dep_name
end
end
end
|