You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
592 B
20 lines
592 B
## maker-rpm
|
|
|
|
`@electron-forge/maker-rpm` builds `.rpm` files, which is the standard package format for RedHat-based Linux distributions such as Fedora.
|
|
|
|
You can only build the RPM target on Linux machines with the `rpm` or `rpm-build` packages installed.
|
|
|
|
Configuration options are documented in [`MakerRpmConfigOptions`](https://js.electronforge.io/interfaces/_electron_forge_maker_rpm.InternalOptions.MakerRpmConfigOptions.html).
|
|
|
|
```javascript
|
|
{
|
|
name: '@electron-forge/maker-rpm',
|
|
config: {
|
|
options: {
|
|
name: 'QuickEdit',
|
|
homepage: 'http://example.com'
|
|
}
|
|
}
|
|
}
|
|
```
|