Skip to content

Instantly share code, notes, and snippets.

@whitequark
Last active August 29, 2015 14:03
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 whitequark/eef074a8daa14602e447 to your computer and use it in GitHub Desktop.
Save whitequark/eef074a8daa14602e447 to your computer and use it in GitHub Desktop.
install lz4 from source
#!/bin/sh -ex
V=r119
curl -OJL https://github.com/Cyan4973/lz4/archive/${V}.tar.gz
tar -zxvf lz4-${V}.tar.gz
cd lz4-${V}
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment