Skip to content

Instantly share code, notes, and snippets.

@curiousercreative
Last active June 10, 2024 16:08
Show Gist options
  • Save curiousercreative/8c12194c169b32a64aeaffb02f6054bb to your computer and use it in GitHub Desktop.
Save curiousercreative/8c12194c169b32a64aeaffb02f6054bb to your computer and use it in GitHub Desktop.
flatpak-builder from source on Pop!_OS 22.04
#! /usr/bin/env bash
# build deps
sudo apt install meson libelf-dev
# get source
git clone git@github.com:flatpak/flatpak-builder.git
cd flatpak-builder
# from repo instructions, build
meson setup _build
# if you get an error about appstream
/usr/bin/appstreamcli compose --help
# that should instruct you to
sudo appstreamcli install org.freedesktop.appstream.compose
# from repo instructions, install
meson install -C _build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment