mirror of
https://github.com/flatpak/flatpak.git
synced 2026-02-01 19:41:27 -05:00
This allows searching for applications easily greatly improving the UX of the cli. This relies upon appstream data which currently must be updated with `flatpak update --appstream`. Closes: #1136 Approved by: mwleeds
18 lines
500 B
Bash
Executable File
18 lines
500 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Install build dependencies, run unit tests and installed tests.
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
|
|
pkg_install sudo which attr fuse \
|
|
libubsan libasan libtsan \
|
|
elfutils git gettext-devel libappstream-glib-devel \
|
|
/usr/bin/{update-mime-database,update-desktop-database,gtk-update-icon-cache}
|
|
pkg_install_testing ostree-devel ostree
|
|
pkg_install_if_os fedora gjs parallel clang
|
|
pkg_install_builddeps flatpak
|
|
|
|
build --enable-gtk-doc ${CONFIGOPTS:-}
|