Skip to content

Instantly share code, notes, and snippets.

@ryan1234
Last active September 20, 2015 22:43
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 ryan1234/77fb72a6cd99e085cacd to your computer and use it in GitHub Desktop.
Save ryan1234/77fb72a6cd99e085cacd to your computer and use it in GitHub Desktop.
apt-get -qqy install autoconf automake build-essential libtool
export LIBUV_VERSION=1.4.2
curl -sSL https://github.com/libuv/libuv/archive/v${LIBUV_VERSION}.tar.gz | tar zxfv - -C /usr/local/src && cd /usr/local/src/libuv-$LIBUV_VERSION && sh autogen.sh && ./configure && make && make install && cd ~ && rm -rf /usr/local/src/libuv-$LIBUV_VERSION && ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment