2023-12-25 22:16:18 -08:00
|
|
|
import pathlib
|
|
|
|
|
|
|
|
app = "ComicTagger"
|
|
|
|
app_name = f"{app}.app"
|
2024-06-29 18:54:13 -07:00
|
|
|
path = f"dist/{app_name}"
|
2023-12-25 22:16:18 -08:00
|
|
|
|
2024-06-29 18:54:13 -07:00
|
|
|
|
|
|
|
# dmgbuild settings
|
2023-12-25 22:16:18 -08:00
|
|
|
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)
|
|
|
|
}
|