Skip to content

Instantly share code, notes, and snippets.

@rubenerd
Created March 3, 2017 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rubenerd/67ca566ec52a63cfcee8ef410e80e671 to your computer and use it in GitHub Desktop.
Save rubenerd/67ca566ec52a63cfcee8ef410e80e671 to your computer and use it in GitHub Desktop.
Build xva-img on Debian
#!/bin/sh
######
## Bootstrap an xva-img install on Debian
## Will be converted to an Ansible playbook at some point
set -e
sudo apt-get update
sudo apt-get install git make cmake gcc g++ libssl-dev
git clone https://github.com/eriklax/xva-img.git
cd xva-img
cmake .
make install clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment