mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-20 22:09:55 +00:00
making venv and install needed pakages by default
it just create a venv folder and install pyQT5 and pyinstaller by itself
This commit is contained in:
parent
04a9689320
commit
64346202a2
1 changed files with 9 additions and 0 deletions
|
|
@ -22,7 +22,16 @@ mkdir -p build/bandle/Data
|
|||
#cp "$STEAMWORKS_PATH/redistributable_bin/linux64/libsteam_api.so" .
|
||||
#make -j${make_threads} > steamshim.make.out
|
||||
#cd ../..
|
||||
|
||||
|
||||
python3 -m venv venv
|
||||
set +u
|
||||
source venv/bin/activate
|
||||
set -u
|
||||
pip install --upgrade pip
|
||||
pip install pyqt5 pyinstaller
|
||||
pyinstaller journal/unix/journal.spec #--windowed
|
||||
|
||||
ruby rpgscript.rb scripts/ build/bandle/
|
||||
|
||||
cp -r dist/_______/* build/bandle/
|
||||
|
|
|
|||
Loading…
Reference in a new issue