aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/python/bin/dmgbuild
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/python/bin/dmgbuild')
-rwxr-xr-xsrc/3rdparty/python/bin/dmgbuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/3rdparty/python/bin/dmgbuild b/src/3rdparty/python/bin/dmgbuild
deleted file mode 100755
index 74fc367c8..000000000
--- a/src/3rdparty/python/bin/dmgbuild
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /usr/bin/env python
-# -*- coding: utf-8 -*-
-
-from __future__ import unicode_literals
-from __future__ import print_function
-
-import dmgbuild
-import sys
-import argparse
-
-parser = argparse.ArgumentParser(description='Construct a disk image file.')
-parser.add_argument('volume_name', metavar='volume-name',
- help='The name to give to the volume (this will appear in the title bar when the user mounts the disk image).')
-parser.add_argument('filename', metavar='output.dmg',
- help='The filename of the disk image to create.')
-parser.add_argument('-s', '--settings',
- help='The path of the settings file.')
-parser.add_argument('-D', dest='defines', action='append', default=[],
- help='Define a value for the settings file (e.g. -Dfoo=bar).')
-parser.add_argument('--no-hidpi', dest='lookForHiDPI', action='store_false', default=True,
- help='Do not search for HiDPI versions of the background image (if specified)')
-
-
-args = parser.parse_args()
-
-defines = {}
-for d in args.defines:
- k,v = d.split('=', 1)
- k = k.strip()
- v = v.strip()
- if (v.startswith("'") and v.endswith("'")) \
- or (v.startswith('"') and v.endswith('"')):
- v = v[1:-1]
- defines[k] = v
-
-dmgbuild.build_dmg(args.filename, args.volume_name, args.settings, defines=defines, lookForHiDPI=args.lookForHiDPI)