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

22 lines
416 B
Fish
Raw Normal View History

2024-07-16 01:30:14 +00:00
#!/bin/env fish
begin
set -l dir (status dirname)
set -l base "$dir/../../../Common/Software/aliae/main.fish"
2024-07-16 01:30:14 +00:00
source "$dir/../../Scripts/software.fish"
2024-09-13 12:47:07 +00:00
function installSW
2024-07-16 01:30:14 +00:00
yayinst \
aliae-bin
2024-09-13 12:47:07 +00:00
end
2024-07-16 12:28:06 +00:00
function configureSW -V base
fish "$base" configure
end
function userConfig -V base
fish "$base" userConfig $argv
2024-07-16 01:30:14 +00:00
end
runInstaller $argv
end