From 4547fd2c5d3393d0b5b37784e8cba3da1fde717d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 13 Apr 2015 12:33:18 +0200 Subject: [PATCH] Add an applications shortcut to the .dmg. See #384. --- scripts/freeze.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/freeze.py b/scripts/freeze.py index 515006978..b4685a4ae 100755 --- a/scripts/freeze.py +++ b/scripts/freeze.py @@ -68,6 +68,10 @@ bdist_msi_options = { 'add_to_path': False, } +bdist_dmg_options = { + 'applications_shortcut': True, +} + if sys.platform.startswith('win'): base = 'Win32GUI' target_name = 'qutebrowser.exe' @@ -89,6 +93,7 @@ try: options={ 'build_exe': build_exe_options, 'bdist_msi': bdist_msi_options, + 'bdist_dmg': bdist_dmg_options, }, **setupcommon.setupdata )