mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-04-01 15:24:56 +00:00
add mkrenpy
This commit is contained in:
parent
ece000c533
commit
86b2d23257
|
@ -19,6 +19,7 @@ Script | Function | Source
|
|||
`mkmusl` | Latest musl.cc toolchain | <https://musl.cc>
|
||||
`mknode` | Latest official NodeJS release | <https://nodejs.org>
|
||||
`mkpypy` | Latest PyPy3 release | <https://www.pypy.org>
|
||||
`mkrenpy` | Latest Ren'Py release | <https://www.renpy.org>
|
||||
`mkrust` | Latest Rust nightly | <https://rust-lang.org>
|
||||
`mksignal` | Latest Signal stable from the Solus repos (requires `eopkg` and may not work on other distros) | <https://signal.org>
|
||||
`mktex` | Minimal/custom TeX Live image | <https://ctan.org>
|
||||
|
|
12
apps/mkrenpy
Executable file
12
apps/mkrenpy
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/sh
|
||||
. "$(dirname "$0")"/appmk
|
||||
part0
|
||||
LINK=$(curl https://www.renpy.org/latest.html | grep 7z | cut -d\" -f2)
|
||||
aria2c "$LINK" -d "$DIR" -o renpy.exe
|
||||
7z x -y -o"$DIR" "$DIR"/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"
|
||||
part9
|
Loading…
Reference in a new issue