Winston Hoy gist felülvizsgálása 2 years ago. Revízióhoz ugrás
1 file changed, 6 insertions, 1 deletion
main.sh
| @@ -1,12 +1,17 @@ | |||
| 1 | 1 | #! /usr/bin/env bash | |
| 2 | 2 | ||
| 3 | + | # build deps | |
| 3 | 4 | sudo apt install meson libelf-dev | |
| 5 | + | ||
| 6 | + | # get source | |
| 4 | 7 | git clone git@github.com:flatpak/flatpak-builder.git | |
| 5 | 8 | cd flatpak-builder | |
| 6 | - | # from repo instructions | |
| 9 | + | ||
| 10 | + | # from repo instructions, build | |
| 7 | 11 | meson setup _build | |
| 8 | 12 | # if you get an error about appstream | |
| 9 | 13 | /usr/bin/appstreamcli compose --help | |
| 10 | 14 | # that should instruct you to | |
| 11 | 15 | sudo appstreamcli install org.freedesktop.appstream.compose | |
| 16 | + | # from repo instructions, install | |
| 12 | 17 | meson install -C _build | |
Winston Hoy gist felülvizsgálása 2 years ago. Revízióhoz ugrás
1 file changed, 12 insertions
main.sh(fájl létrehozva)
| @@ -0,0 +1,12 @@ | |||
| 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 | |