UNPKG

640 BMarkdownView Raw
1## maker-deb
2
3`@electron-forge/maker-deb` builds .deb packages, which are the standard package format for Debian-based Linux distributions such as Ubuntu. You can only build the deb target on Linux or macOS machines with the fakeroot and dpkg packages installed.
4
5Configuration options are documented in [`MakerDebConfigOptions`](https://js.electronforge.io/interfaces/_electron_forge_maker_deb.InternalOptions.MakerDebConfigOptions.html).
6
7```javascript
8{
9 name: '@electron-forge/maker-deb',
10 config: {
11 options: {
12 maintainer: 'The Forgers',
13 homepage: 'https://example.com',
14 icon: 'path/to/icon.svg'
15 }
16 }
17}
18```