23 lines
520 B
Fish
23 lines
520 B
Fish
|
#!/bin/env fish
|
||
|
begin
|
||
|
set -l dir (status dirname)
|
||
|
source "$dir/../../Scripts/software.fish"
|
||
|
|
||
|
function installSW
|
||
|
pacinst -Syu base-devel
|
||
|
configureSW
|
||
|
end
|
||
|
|
||
|
function configureSW
|
||
|
set -l customFile /etc/makepkg.conf.d/valhalla.conf
|
||
|
|
||
|
if [ ! -f "$customFile" ]
|
||
|
begin
|
||
|
printf %s\n \
|
||
|
"OPTIONS+=(!debug)" \
|
||
|
"MAKEFLAGS=\"-j\$(nproc)\""
|
||
|
end | sudo tee "$customFile" > /dev/null
|
||
|
end
|
||
|
end
|
||
|
end
|