repo/extra/x265/build

11 lines
Plaintext
Raw Normal View History

2019-07-27 00:50:31 -06:00
#!/bin/sh -e
2019-11-12 19:33:07 -07:00
export DESTDIR="$1"
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 .