Skip to content

Instantly share code, notes, and snippets.

@micha
Created August 18, 2017 13:51
Show Gist options
  • Save micha/f2d5a5689ff345baf1850163ceeee109 to your computer and use it in GitHub Desktop.
Save micha/f2d5a5689ff345baf1850163ceeee109 to your computer and use it in GitHub Desktop.
## DEPENDENCIES (BUILD ON INSTANCE) ###########################################
/usr/local/bin/jt:
cat target/jt.tar.gz \
|(cd /usr/local && tar xzvf -)
/usr/local/bin/tclsh8.5:
cat target/tcl8.5.19-src.tar.gz \
|(cd target && tar xzvf - && cd tcl8.5.19/unix && ./configure && make && make install)
/usr/local/lib/libzmq.so:
cat target/zeromq-3.1.0-beta.tar.gz \
|(cd target && tar xzvf - && cd zeromq-3.1.0 && ./configure && make && make check && make install && ldconfig)
/usr/bin/redis-server:
cat target/redis-3.2.9.tar.gz \
|(cd target && tar xzvf - && cd redis-3.2.9 && make && make test && make PREFIX=/usr install)
/usr/local/bin/node:
curl https://nodejs.org/dist/v5.12.0/node-v5.12.0-linux-x64.tar.gz \
|(cd /usr/local && tar --strip-components 1 -xzf -)
SRCS = /usr/local/bin/jt /usr/local/bin/tclsh8.5 /usr/local/lib/libzmq.so \
/usr/bin/redis-server /usr/local/bin/node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment