comictagger/build-tools/dmgbuild.conf

20 lines
339 B
Plaintext
Raw Permalink Normal View History

import pathlib
app = "ComicTagger"
app_name = f"{app}.app"
2024-06-29 18:54:13 -07:00
path = f"dist/{app_name}"
2024-06-29 18:54:13 -07:00
# dmgbuild settings
format = 'ULMO'
files = (str(path),)
symlinks = {'Applications': '/Applications'}
icon = pathlib.Path().cwd() / 'build-tools' / 'mac' / 'volume.icns'
icon_locations = {
app_name: (100, 100),
'Applications': (300, 100)
}