mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-01-04 19:27:30 +00:00
12 lines
372 B
Bash
Executable file
12 lines
372 B
Bash
Executable file
#!/bin/sh
|
|
# shellcheck source=../appdwarf
|
|
SOURCE=1 . "$(which appdwarf)"
|
|
LINK=$(curl https://www.renpy.org/latest.html | grep 7z | cut -d\" -f2)
|
|
un7z renpy.exe
|
|
mkdir "$DIR"/lib
|
|
mv "$DIR"/renpy-*/lib/py3-linux-x86_64 "$DIR"/renpy-*/lib/python* "$DIR"/lib
|
|
mv "$DIR"/renpy-*/renpy* "$DIR"
|
|
rm -r "$DIR"/*.exe "$DIR"/renpy-* "$DIR/renpy.app"
|
|
ln -s renpy.sh "$DIR/AppRun"
|
|
appmk
|