summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2016-04-11 18:01:42 -0400
committerKali Kaneko <kali@leap.se>2016-04-11 18:01:42 -0400
commited7c2bdf2efc2ce4e0ef4d761d9470604efa9969 (patch)
treec0b39f01ac5bcb5becbe0b88cba9b59e73498de1
parentf05ec77ae21f8b01f20267c129307c91683c74d7 (diff)
[docs] add some important info about building bundles
-rw-r--r--pkg/pyinst/README.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/pyinst/README.rst b/pkg/pyinst/README.rst
new file mode 100644
index 00000000..b6784a52
--- /dev/null
+++ b/pkg/pyinst/README.rst
@@ -0,0 +1,17 @@
+Building da bundles
+--------------------
+Because, you know, bundles are cool. Who needs a decent package manager nowadays? </rant>.
+
+You need a couple of things in your virtualenv:
+
+- All the dependencies. A sumo tarball is probably a good idea.
+- PyInstaller. Version 3 or higher.
+- A PySide build. While the postmkenv.sh hack is good enough for
+ developing, you will need a wheel built with --standalone flag.
+ See
+ http://pyside.readthedocs.org/en/latest/building/linux.html#building-pyside-distribution::
+
+ $ python2.7 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --standalone
+
+ (since this takes a while, you can probably grab the already built wheel from
+ the leap servers).