main.sh
· 366 B · Bash
Raw
#! /usr/bin/env bash
sudo apt install meson libelf-dev
git clone git@github.com:flatpak/flatpak-builder.git
cd flatpak-builder
# from repo instructions
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
meson install -C _build
| 1 | #! /usr/bin/env bash |
| 2 | |
| 3 | sudo apt install meson libelf-dev |
| 4 | git clone git@github.com:flatpak/flatpak-builder.git |
| 5 | cd flatpak-builder |
| 6 | # from repo instructions |
| 7 | meson setup _build |
| 8 | # if you get an error about appstream |
| 9 | /usr/bin/appstreamcli compose --help |
| 10 | # that should instruct you to |
| 11 | sudo appstreamcli install org.freedesktop.appstream.compose |
| 12 | meson install -C _build |