1bf215546Sopenharmony_ci#!/bin/bash 2bf215546Sopenharmony_ci 3bf215546Sopenharmony_ciset -ex 4bf215546Sopenharmony_ci 5bf215546Sopenharmony_ciexport LIBDRM_VERSION=libdrm-2.4.110 6bf215546Sopenharmony_ci 7bf215546Sopenharmony_ciwget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.xz 8bf215546Sopenharmony_citar -xvf $LIBDRM_VERSION.tar.xz && rm $LIBDRM_VERSION.tar.xz 9bf215546Sopenharmony_cicd $LIBDRM_VERSION 10bf215546Sopenharmony_cimeson build -D vc4=false -D freedreno=false -D etnaviv=false $EXTRA_MESON_ARGS 11bf215546Sopenharmony_cininja -C build install 12bf215546Sopenharmony_cicd .. 13bf215546Sopenharmony_cirm -rf $LIBDRM_VERSION 14bf215546Sopenharmony_ci 15