improve .deb control file and avoid dependence on xdg-utils when building sparrow-server debs

This commit is contained in:
Craig Raw 2022-11-07 10:08:50 +02:00
parent 0a8eb2fbb7
commit b7992ae9e1

View file

@ -240,7 +240,12 @@ jlink {
installerType = "exe" installerType = "exe"
} }
if(os.linux) { if(os.linux) {
installerOptions += ['--resource-dir', 'src/main/deploy/package/linux/', '--linux-shortcut', '--linux-menu-group', 'Sparrow', '--linux-rpm-license-type', 'ASL 2.0'] if(headless) {
installerOptions = ['--license-file', 'LICENSE']
} else {
installerOptions += ['--resource-dir', 'src/main/deploy/package/linux/', '--linux-shortcut', '--linux-menu-group', 'Sparrow']
}
installerOptions += ['--linux-app-category', 'utils', '--linux-app-release', '1', '--linux-rpm-license-type', 'ASL 2.0', '--linux-deb-maintainer', 'mail@sparrowwallet.com']
imageOptions += ['--icon', 'src/main/deploy/package/linux/Sparrow.png', '--resource-dir', 'src/main/deploy/package/linux/'] imageOptions += ['--icon', 'src/main/deploy/package/linux/Sparrow.png', '--resource-dir', 'src/main/deploy/package/linux/']
} }
if(os.macOsX) { if(os.macOsX) {