Skip to content

Instantly share code, notes, and snippets.

@dyon
Created November 27, 2013 15:13
Show Gist options
  • Save dyon/7677326 to your computer and use it in GitHub Desktop.
Save dyon/7677326 to your computer and use it in GitHub Desktop.
Unison (version 2.45.28) install script.
# Install pre-requisites
sudo apt-get install build-essentials ocaml
# Get the sources
wget http://www.seas.upenn.edu/~bcpierce/unison/download/releases/beta/unison-2.45.28.tar.gz
# Untar them
tar xzvf unison-2.45.28.tar.gz
# Cd to the unpacked directory
cd unison-2.45.28
# Build unison (ignore the etags error when finished)
make NATIVE=yes UISTYLE=text
# Copy unison to /usr/local/bin
sudo cp unison /usr/local/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment