2018-01-14 01:18:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-28 14:34:18 +00:00
|
|
|
set -e
|
|
|
|
|
2018-01-14 01:18:50 +00:00
|
|
|
site_packages="$(python -c "import os; print(os.path.dirname(os.__file__) + '/site-packages')")"
|
|
|
|
|
2020-01-28 03:22:22 +00:00
|
|
|
if [ "$BUILD" = "linux" ]; then
|
2018-02-20 02:43:39 +00:00
|
|
|
# pyinstaller misses these two
|
|
|
|
pyinstaller_args+="--add-binary /usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so:. "
|
|
|
|
pyinstaller_args+="--add-binary /usr/lib/x86_64-linux-gnu/libproxy.so.1:. "
|
|
|
|
fi
|
2018-01-14 01:18:50 +00:00
|
|
|
|
|
|
|
# This one's tricky. ink/stitch doesn't actually _use_ gi.repository.Gtk,
|
|
|
|
# but it does use GTK (through wxPython). pyinstaller has some special
|
|
|
|
# logic to handle GTK apps that is engaged when you import
|
|
|
|
# gi.repository.Gtk that pulls in things like themes, icons, etc. Without
|
|
|
|
# that, the Params dialog is unthemed and barely usable. This hidden
|
|
|
|
# import option is actually the only reason we had to install python-gi
|
|
|
|
# above!
|
|
|
|
pyinstaller_args+="--hidden-import gi.repository.Gtk "
|
|
|
|
|
2018-07-14 00:03:26 +00:00
|
|
|
# mac and windows build seem to miss wx import
|
2018-07-18 02:42:59 +00:00
|
|
|
pyinstaller_args+="--hidden-import wx "
|
2018-01-14 01:18:50 +00:00
|
|
|
|
2018-07-31 12:53:15 +00:00
|
|
|
# We need to use the precompiled bootloader linked with graphical Mac OS X
|
|
|
|
# libraries if we develop a GUI application for Mac:
|
2020-03-15 02:12:58 +00:00
|
|
|
if [ "$BUILD" = "osx" -o "$BUILD" = "windows" ]; then
|
2018-07-31 12:53:15 +00:00
|
|
|
pyinstaller_args+="--windowed "
|
|
|
|
fi
|
|
|
|
|
2018-02-20 02:43:39 +00:00
|
|
|
# This lets pyinstaller see inkex.py, etc.
|
2018-08-20 02:21:28 +00:00
|
|
|
pyinstaller_args+="-p inkscape/share/extensions "
|
2018-01-24 01:13:37 +00:00
|
|
|
|
2018-03-31 00:37:11 +00:00
|
|
|
# output useful debugging info that helps us trace library dependency issues
|
|
|
|
pyinstaller_args+="--log-level DEBUG "
|
|
|
|
|
2018-05-01 00:13:58 +00:00
|
|
|
if [ "$BUILD" = "windows" ]; then
|
2020-01-27 20:39:45 +00:00
|
|
|
python -m PyInstaller $pyinstaller_args inkstitch.py
|
2018-05-01 00:13:58 +00:00
|
|
|
else
|
|
|
|
# without the LD_LIBRARY_PATH, it seems that pyinstaller can't find all of
|
|
|
|
# wxpython's shared libraries
|
2020-01-27 20:39:45 +00:00
|
|
|
LD_LIBRARY_PATH="${site_packages}/wx" python -m PyInstaller $pyinstaller_args --strip inkstitch.py;
|
2018-05-01 00:13:58 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# pyinstaller put a whole mess of libraries under dist/inkstitch. We'd like
|
|
|
|
# to put some more user-accessible stuff like examples and palettes in
|
|
|
|
# folders under inkstitch/ (see ../Makefile) so let's move the pyinstaller
|
|
|
|
# stuff into its own dir.
|
|
|
|
shopt -s dotglob
|
|
|
|
mkdir dist/bin
|
|
|
|
mv dist/inkstitch/* dist/bin
|
|
|
|
mv dist/bin dist/inkstitch
|
|
|
|
|
2018-08-01 17:00:03 +00:00
|
|
|
# on Mac, pyinstaller creates a .app version as well, but we don't need that
|
2020-01-28 03:22:22 +00:00
|
|
|
if [ "$BUILD" = "osx" ]; then
|
2018-08-01 17:00:03 +00:00
|
|
|
rm -rf dist/inkstitch.app/
|
|
|
|
fi
|