aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/python/lib/python3.9/site-packages/dmgbuild/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/python/lib/python3.9/site-packages/dmgbuild/__main__.py')
-rw-r--r--src/3rdparty/python/lib/python3.9/site-packages/dmgbuild/__main__.py58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/3rdparty/python/lib/python3.9/site-packages/dmgbuild/__main__.py b/src/3rdparty/python/lib/python3.9/site-packages/dmgbuild/__main__.py
new file mode 100644
index 000000000..ca712a183
--- /dev/null
+++ b/src/3rdparty/python/lib/python3.9/site-packages/dmgbuild/__main__.py
@@ -0,0 +1,58 @@
+#! /usr/bin/env python
+import argparse
+
+from .core import build_dmg
+
+
+def main():
+ 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
+
+ build_dmg(
+ args.filename,
+ args.volume_name,
+ args.settings,
+ defines=defines,
+ lookForHiDPI=args.lookForHiDPI,
+ )
+
+
+if __name__ == "__main__":
+ main()