42 lines
1.1 KiB
Fish
42 lines
1.1 KiB
Fish
|
#!/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" .
|
||
|
|
||
|
set -i \
|
||
|
-e "/^source=(/s/source=(/\0$patchName /" \
|
||
|
-e "/^md5sums=(/s/^md5sumns=(/\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
|