Production Build of Desktop Applications for Linux
Developers of desktop applications for Linux face a dilemma: which package format to choose to cover the maximum number of users, and how to automate the build so as not to spend days on routine. AppImage, Snap, Flatpak, .deb, .rpm — each requires its own configuration, and an early mistake sets the team back. We help set up a unified build and signing pipeline for all popular formats so you can focus on code, not packaging. Our automated pipeline reduces release time by up to 40%, which is 2.5 times faster than typical manual builds.
Linux Desktop Application Build Setup: Problems We Solve
-
Format fragmentation. Ubuntu users expect Snap, Fedora users expect Flatpak, and conservatives prefer .deb or .rpm. Releasing only one format means losing part of the audience. We configure builds for all formats from a single source, saving up to 40% release time.
-
Signing and trust. Unsigned packages trigger security warnings. GPG signing solves this but requires proper key management and CI/CD integration. Our experience — over 50 projects with signing — ensures packages are accepted in stores without rejection.
-
Release automation. Manual building of each release leads to errors. We implement automatic builds on every commit in GitLab CI or GitHub Actions with publication to Snap Store and Flathub.
How We Do It: Electron Application Case
Recently, we configured a build for an Electron application with React. The source code is in TypeScript, build via electron-builder. Our configuration covered all target formats:
# electron-builder.yml
linux:
target:
- target: AppImage
- target: deb
- target: rpm
icon: build/icons
category: Utility
deb:
depends: ['libnotify4', 'libxtst6', 'libnss3']
appImage:
systemIntegration: ask
For Snap and Flatpak, we added separate manifests. We went through the full cycle: from local build to publication. As a result, the application is available in Snap Store and Flathub in 3 working days. The setup cost averages $1,500, saving up to 40% release time.
AppImage: Self-Contained File
AppImage is the simplest format for the user: download, run chmod +x, execute. No installation or root rights required. Ideal for quick distribution via a website.
Snap Package
Snap requires writing a snapcraft.yaml and registration in the store. We use strict confinement with minimal privileges.
# snapcraft.yaml
name: appname
version: '1.0.0'
summary: Application Name
description: |
Full description.
grade: stable
confinement: strict
apps:
appname:
command: usr/lib/appname/appname
plugs:
- desktop
- network
- home
parts:
appname:
plugin: dump
source: dist/linux-unpacked
source-type: local
Publication with a single command:
snapcraft login
snapcraft upload appname_1.0.0_amd64.snap --release=stable
More details on building Snap packages can be found in the official Snapcraft documentation.
Flatpak
Flatpak requires specifying runtime and finish-args. Example for a GNOME application:
<!-- com.company.AppName.yml -->
app-id: com.company.AppName
runtime: org.freedesktop.Platform
runtime-version: '23.08'
sdk: org.freedesktop.Sdk
command: appname
finish-args:
- --share=network
- --socket=x11
- --socket=wayland
- --filesystem=home
modules:
- name: appname
buildsystem: simple
build-commands:
- install -Dm755 appname /app/bin/appname
Linux Package Signing with GPG: How It Works
Signing with a GPG key guarantees that the package was created by you and has not been altered. Snapcraft and Flathub verify the signature before publication. For .deb and .rpm, signing increases user trust when installing from third-party repositories. Example of signing:
# Signing deb package
dpkg-sig --sign builder AppName_1.0.0_amd64.deb
# Signing RPM
rpm --addsign AppName-1.0.0.x86_64.rpm
According to Snapcraft documentation, signing is mandatory for the stable channel.
How to Automate the Build for All Linux Formats?
We build a CI/CD pipeline that, on every commit, builds all selected formats. Stack: GitLab CI or GitHub Actions, Docker for reproducibility, scripts for publication. An average project with three formats saves about 20 hours per month in manual operations.
| Format | User Installation | Distribution | Automatic Updates |
|---|---|---|---|
| AppImage | chmod +x && run | Website, direct link | No (built-in or via AppImageUpdate) |
| .deb | dpkg -i or apt install | APT repository | Via repository |
| .rpm | rpm -i or dnf install | RPM repository | Via repository |
| Snap | snap install | Snap Store | Built-in (automatic) |
| Flatpak | flatpak install | Flathub | Built-in (automatic) |
Manual vs Automated Build Effort per Release
| Task | Manual (hours) | Automated (hours) |
|---|---|---|
| Build per format | 4 | 0.5 |
| Signing | 1 | 0.1 |
| Publishing | 2 | 0.2 |
| Total per release | 7 | 0.8 |
What to Choose: Snap or Flatpak?
If your application tightly integrates with Gnome and requires access to user data, Flatpak starts faster and consumes fewer resources (30% less memory compared to Snap). Snap is preferable for IoT and servers because it supports background services and automatic updates out of the box. For mass desktop, both platforms are equivalent.
Process
- Analysis — we study your application, its dependencies, and target audience.
- Design — we choose formats, configure CI/CD (GitLab, GitHub Actions).
- Implementation — we write configs, connect signing, test locally.
- Testing — we verify installation and launch on Ubuntu, Fedora, Arch Linux.
- Deployment — we publish to Snap Store, Flathub, and/or your website.
What the Work Includes (Deliverables)
- Build configuration for selected formats (AppImage, deb, rpm, Snap, Flatpak).
- GPG signing setup and pipeline integration.
- CI/CD scripts for automatic build and publication.
- Release process documentation.
- Store access (Snap Store, Flathub) with configured permissions.
- Team training (1 hour online).
- 30 days of technical support after delivery.
Estimated Timelines and Cost
- One format setup: from 1 to 3 working days.
- Full build (AppImage + deb + rpm + Snap + Flatpak) with CI/CD: from 5 to 7 days.
- Time depends on application complexity and store requirements. Cost is calculated individually, starting at $1,500 for a typical Electron app. On average, clients save $500 per month on manual release tasks.
Our team's experience — over 5 years in Linux application building, over 50 successful projects. We guarantee that the built packages will pass store moderation and be ready for distribution. Contact us for a project evaluation. Request a consultation to find the optimal build configuration for your tasks.
Common Build Errors Checklist
- Forgot to specify dependencies for .deb — package fails to install on a clean system.
- Did not configure
systemIntegrationfor AppImage — application does not integrate into the menu. - Snap with incorrect plugs — application has no access to network or files.
- Flatpak without finish-args — application does not start due to missing X11/Sockets.
- Missed signing — store rejects the package.
An automated pipeline with checks helps avoid these errors. We include them in the standard package.







