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

27 lines
583 B
Fish

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