summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZev Lee <zevlee+gitlab@pm.me>2021-05-13 09:05:01 +0000
committerChristoph Reiter <reiter.christoph@gmail.com>2022-03-28 04:29:38 +0000
commit0773c8667a0cb46e9da67869e9cfa6084ae79fce (patch)
tree74eacf08e2b19c254b5c2921850a5a5d2f848f08
parent4355e36208237c0073d168bd0e6dee5b8c69cc30 (diff)
downloadpygobject-0773c8667a0cb46e9da67869e9cfa6084ae79fce.tar.gz
Add Hello World GTK under Other Options and Passphraser as an example that uses the aforementioned build system.
-rw-r--r--docs/guide/deploy.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/guide/deploy.rst b/docs/guide/deploy.rst
index efee20c2..323ec72e 100644
--- a/docs/guide/deploy.rst
+++ b/docs/guide/deploy.rst
@@ -44,9 +44,11 @@ Example Deployments
* `MyPaint <http://mypaint.org/>`__ provides a Windows installer based on
MSYS2 and Inno Setup. It uses SCons for building/installing the application.
-* ...?
+* `Passphraser <https://github.com/zevlee/passphraser>`__ uses the Hello World
+ GTK template build system (see below).
Other options
-------------
* `PyInstaller <http://www.pyinstaller.org/>`_ is a program that freezes (packages) Python programs into stand-alone executables, under Windows, Linux, Mac OS X, and more. PyInstaller's packager has built-in support for automatically including PyGObject dependencies with your application without requiring additional configuration.
+* `Hello World GTK <https://github.com/zevlee/hello-world-gtk>`_ is a template build system for distributing Python-based GTK applications on Windows, macOS, and Linux. First, an application directory is assembled using PyInstaller. Then, a different program is used to package the resulting directory. For Windows, NSIS3 is used. For macOS, the built-in hdiutil is used. For Linux, AppImageKit is used.