16 lines
367 B
Bash
16 lines
367 B
Bash
|
#!/bin/bash
|
||
|
cd src
|
||
|
|
||
|
pyinstaller --specpath ../dist/cspec \
|
||
|
--workpath ../dist/cbuild \
|
||
|
--distpath ../dist/cdist \
|
||
|
--add-data ../../src/py_to_uxf/appsettings.json:. \
|
||
|
--hidden-import pynput.keyboard._xorg \
|
||
|
--hidden-import pynput.mouse._xorg \
|
||
|
--hidden-import pyfiglet.fonts \
|
||
|
--collect-data pyfiglet \
|
||
|
-n py_to_uxf \
|
||
|
-y \
|
||
|
py_to_uxf/main.py
|
||
|
|
||
|
cd ../
|