2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/xorg/xf86-video-intel/build
2020-03-14 10:11:23 +02:00

17 lines
277 B
Bash
Executable File

#!/bin/sh -e
export DESTDIR="$1"
export LDFLAGS="$LDFLAGS -Wl,-z,lazy"
export CFLAGS="$CFLAGS -fcommon"
meson \
--prefix=/usr \
--libexecdir=/usr/lib \
-Ddefault-dri=3 \
-Dxvmc=false \
-Dvalgrind=false \
. build
ninja -C build
ninja -C build install