774b35cccf
Add a "deploy" target that will create a distributable file. - Linux: AppImage. - Windows: zip file. - MacOS: dmg. Change-Id: Id8ae9c021bc5bbb1abf066205b57d943c3f3b327
15 lines
418 B
INI
15 lines
418 B
INI
# Configuration for creating a dmg with dmgbuild
|
|
# (https://github.com/al45tair/dmgbuild)
|
|
# Needs biplist as additional package.
|
|
|
|
import os
|
|
import biplist
|
|
|
|
_appbundle = defines['appbundle']
|
|
_plist = biplist.readPlist(os.path.join(_appbundle, 'Contents/Info.plist'))
|
|
_iconfile = os.path.join(_appbundle, 'Contents/Resources', _plist['CFBundleIconFile'])
|
|
|
|
files = [ _appbundle ]
|
|
icon = _iconfile
|
|
background = '#c6d6f5'
|
|
|