2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-05 16:55:47 -06:00
repo/extra/x265/build

11 lines
150 B
Plaintext
Raw Normal View History

2019-07-27 00:50:31 -06:00
#!/bin/sh -e
2023-03-02 07:40:00 -07:00
export DESTDIR="$1"
2019-11-12 19:33:07 -07:00
cmake source \
2019-07-27 00:50:31 -06:00
-DCMAKE_INSTALL_PREFIX=/usr \
2019-11-26 14:51:49 -07:00
-DCMAKE_BUILD_TYPE=Release
2019-07-27 00:50:31 -06:00
2019-11-12 19:33:07 -07:00
cmake --build .
cmake --install .