diff options
author | Cem Keylan <cem@ckyln.com> | 2020-06-28 00:00:25 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-06-28 00:00:25 +0300 |
commit | 33bfcbc82ed7bbc74c32de29ea7fd90968cf0740 (patch) | |
tree | 4eb81483b05707f92266162b4bb23827b37fa240 /extra/libva/build | |
parent | 1f9597dd69263e3d660b414a0b88b78b1601179b (diff) | |
download | repository-33bfcbc82ed7bbc74c32de29ea7fd90968cf0740.tar.gz |
libva: bump to 2.8.0
Diffstat (limited to 'extra/libva/build')
-rwxr-xr-x | extra/libva/build | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/extra/libva/build b/extra/libva/build index 6daf22f8..2ce3902a 100755 --- a/extra/libva/build +++ b/extra/libva/build @@ -1,7 +1,11 @@ #!/bin/sh -e -./configure \ - --prefix=/usr +export DESTDIR="$1" + +meson \ + --prefix=/usr \ + . output + +ninja -C output +ninja -C output install -make -make DESTDIR="$1" install |