mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-06 19:35:44 +02:00
build .deb and .rpm
This commit is contained in:
parent
940965f002
commit
35ca1b69c0
3 changed files with 66 additions and 4 deletions
|
|
@ -7,7 +7,6 @@ const pkg = require('./package.json');
|
|||
|
||||
module.exports = {
|
||||
packagerConfig: {
|
||||
name: 'Rowboat',
|
||||
executableName: 'rowboat',
|
||||
icon: './icons/icon', // .icns extension added automatically
|
||||
appBundleId: 'com.rowboat.app',
|
||||
|
|
@ -49,6 +48,29 @@ module.exports = {
|
|||
setupExe: `Rowboat-win32-${arch}-${pkg.version}-setup.exe`,
|
||||
})
|
||||
},
|
||||
{
|
||||
name: '@electron-forge/maker-deb',
|
||||
config: (arch) => ({
|
||||
options: {
|
||||
name: `Rowboat-linux`,
|
||||
bin: "rowboat",
|
||||
description: 'AI coworker with memory',
|
||||
maintainer: 'rowboatlabs',
|
||||
homepage: 'https://rowboatlabs.com'
|
||||
}
|
||||
})
|
||||
},
|
||||
{
|
||||
name: '@electron-forge/maker-rpm',
|
||||
config: {
|
||||
options: {
|
||||
name: `Rowboat-linux`,
|
||||
bin: "rowboat",
|
||||
description: 'AI coworker with memory',
|
||||
homepage: 'https://rowboatlabs.com'
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: '@electron-forge/maker-zip',
|
||||
platform: ["darwin", "win32", "linux"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue