Last active
June 10, 2024 16:08
-
-
Save curiousercreative/8c12194c169b32a64aeaffb02f6054bb to your computer and use it in GitHub Desktop.
flatpak-builder from source on Pop!_OS 22.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# build deps | |
sudo apt install meson libelf-dev | |
# get source | |
git clone [email protected]: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