blob: f1902fb9c245bd2d0e8798ade43107f0384ac0c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
|