Advertisement
Guest User

Untitled

a guest
Mar 4th, 2016
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. if ! pkg-config --exists x265; then
  2.  
  3.   cd $SRC
  4.   hg clone https://bitbucket.org/multicoreware/x265
  5.   cd $SRC/x265/build/linux
  6.   cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$BUILD" -DENABLE_SHARED:bool=off ../../source
  7.   make -j ${NUMBER_OF_JOBS}
  8.   make install
  9.   make distclean
  10.  
  11. fi;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement