Created
July 21, 2017 21:10
-
-
Save bistoco/9af9e90fed1e0b1bf53560f1fd200218 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
sudo apt-get update && sudo apt-get upgrade | |
sudo apt-get install git cmake subversion libav-tools dh-autoreconf libcurl4-openssl-dev yasm libx264-dev pkg-config | |
git clone https://github.com/FFmpeg/FFmpeg ffmpeg | |
cd ffmpeg && git checkout remotes/origin/release/2.8 | |
./configure --enable-gpl --enable-libx264 --enable-shared --prefix=/usr/local | |
make && sudo make install | |
cd && git clone https://github.com/kerberos-io/machinery | |
cd machinery && mkdir build && cd build | |
cmake .. && make && make check && sudo make install | |
sudo systemctl enable kerberosio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment