PortValhalla/scripts/Arch/Software/logo-ls/main.fish

42 lines
1.1 KiB
Fish
Raw Normal View History

#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function installSW -V dir
set -l dirName (realpath "$dir")
set -l contextRoot (mktemp -d)
set -l pkgName logo-ls
set -l patchName workaround.patch
begin
pushd "$contextRoot" > /dev/null
yay -G -f "$pkgName"
cd "$pkgName"
cp "$dirName/$patchName" .
2024-07-17 12:55:30 +00:00
sed -i \
-e "/^source=(/s/source=(/\0$patchName /" \
2024-07-17 13:00:26 +00:00
-e "/^md5sums=(/s/^md5sums=(/\0SKIP /" \
-e "/^build() {/,/}/{" \
-e "/^[[:space:]]*cd/{" \
-e "a cat ../$patchName | patch --strip 1 --forward --merge" \
-e "}" \
-e "}" \
PKGBUILD
makepkg --noconfirm -si --force
popd > /dev/null
end
rm -rf "$contextRoot"
configureSW
end
function configureSW -V dir
source "$dir/../../../Common/Software/logo-ls/main.fish" configure
end
runInstaller $argv
end