2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-11-15 11:10:08 -07:00
repo/extra/libva/build

16 lines
236 B
Plaintext
Raw Normal View History

#!/bin/sh -e
2023-03-02 07:40:00 -07:00
export DESTDIR="$1"
2020-09-13 10:52:51 -06:00
meson \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
2021-07-08 00:19:18 -06:00
-Dwith_wayland=yes \
-Dwith_x11=no \
2021-07-08 09:10:47 -06:00
-Dwith_glx=no \
2020-09-13 10:52:51 -06:00
. output
ninja -C output
ninja -C output install