1#!/bin/bash 2 3set -ex 4 5git config --global user.email "mesa@example.com" 6git config --global user.name "Mesa CI" 7git clone \ 8 https://github.com/intel/libva-utils.git \ 9 -b 2.13.0 \ 10 --depth 1 \ 11 /va-utils 12 13pushd /va-utils 14meson build -D tests=true -Dprefix=/va $EXTRA_MESON_ARGS 15ninja -C build install 16popd 17rm -rf /va-utils 18