mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-10 00:46:30 +00:00
12 lines
255 B
Plaintext
12 lines
255 B
Plaintext
|
#!/bin/sh
|
||
|
. "$(dirname "$0")"/appmk
|
||
|
part0
|
||
|
APP="$1"
|
||
|
sudo pacman -Sw --cachedir "$DIR" "$@"
|
||
|
parallel "tar xf {} -C$DIR" ::: "$DIR"/*.tar.zst
|
||
|
rm -f "$DIR"/*.tar.zst*
|
||
|
appb
|
||
|
sed -i 4s#/lib#/usr/lib#g "$DIR"/AppRun
|
||
|
sed -i 3,5s#/bin#/usr/bin# "$DIR"/AppRun
|
||
|
part9
|