Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 887 Bytes

flatpak.md

File metadata and controls

26 lines (19 loc) · 887 Bytes
description
Create a Flatpak app for your Electron app using Electron Forge.

Flatpak

The Flatpak target builds .flatpak files, which is a packaging format for Linux distributions that allows for sandboxed installation of applications in isolation from the rest of their system. In contrast, typical deb or RPM installation methods are not sandboxed.

You can only build the Flatpak target if you have flatpak, flatpak-builder, and eu-strip (usually part of the elfutils package) installed on your system.

Configuration options are documented in MakerFlatpakConfig.

Usage

{
  name: '@electron-forge/maker-flatpak',
  config: {
    options: {
      categories: ['Video'],
      mimeType: ['video/h264']
    }
  }
}