mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
28 lines
1.1 KiB
Makefile
28 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="xorg-intel-gpu-tools"
|
|
PKG_VERSION="1.26"
|
|
PKG_SHA256="36d4193b9f22fbb4834ec97be3bb6322ec901e20f7be018f0a50d3eb03ec9bb7"
|
|
PKG_LICENSE="GPL"
|
|
PKG_DEPENDS_TARGET="toolchain cairo procps-ng"
|
|
PKG_SITE="https://gitlab.freedesktop.org/drm/igt-gpu-tools"
|
|
PKG_URL="https://www.x.org/releases/individual/app/igt-gpu-tools-${PKG_VERSION}.tar.xz"
|
|
PKG_LONGDESC="Test suite and tools for DRM/KMS drivers"
|
|
PKG_TOOLCHAIN="meson"
|
|
|
|
PKG_MESON_OPTS_TARGET="-Dchamelium=disabled \
|
|
-Ddocs=disabled \
|
|
-Dlibdrm_drivers=auto \
|
|
-Dlibunwind=disabled \
|
|
-Dman=disabled \
|
|
-Doverlay=disabled \
|
|
-Drunner=disabled \
|
|
-Dtests=enabled \
|
|
-Dvalgrind=disabled"
|
|
|
|
pre_configure_target() {
|
|
# xorg-intel-gpu-tools does not build with NDEBUG (requires assert for tests)
|
|
export TARGET_CFLAGS=$(echo ${TARGET_CFLAGS} | sed -e "s|-DNDEBUG||g")
|
|
}
|