PortValhalla/scripts/Arch/Software/pacman/main.fish

26 lines
563 B
Fish
Raw Normal View History

2024-07-14 07:44:32 +00:00
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function installSW
configureSW
end
function configureSW
sed -i \
-e "/^\[options\]$/,/^\[/{" \
2024-07-14 08:10:14 +00:00
-e 's/^#\?\(Color\)$/\1/;' \
-e '/^# Misc Options$/{' (
2024-07-14 07:44:32 +00:00
# -e "a ILoveCandy"
) \
-e "};" \
2024-07-14 08:10:14 +00:00
-e '/^#\?\[multilib\]$/,/^$/{ s/^#\?\(.*\)$/\1/; }' \
2024-07-14 07:44:32 +00:00
/etc/pacman.conf
pacinst -Sy
end
2024-07-14 08:09:57 +00:00
runInstaller $argv
2024-07-14 07:44:32 +00:00
end