2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-01 05:51:05 -06:00
repo/extra/mpv/build

19 lines
273 B
Plaintext
Raw Normal View History

2019-08-04 15:07:28 -06:00
#!/bin/sh -e
2023-03-02 07:40:00 -07:00
export DESTDIR="$1"
2022-04-20 03:44:40 -06:00
meson \
2019-08-04 15:07:28 -06:00
--prefix=/usr \
2022-04-20 03:44:40 -06:00
-Dalsa=enabled \
2022-09-10 01:03:14 -06:00
-Dlibmpv=true \
2022-04-20 03:44:40 -06:00
-Dwayland=enabled \
-Dx11=disabled \
. output
2019-08-04 15:07:28 -06:00
2022-04-20 03:44:40 -06:00
ninja -C output
ninja -C output install
rm -rf \
"$1/usr/share/zsh" \
"$1/usr/share/bash-completion"