Skip to content

Instantly share code, notes, and snippets.

@sanderpick
Created August 25, 2014 22:09
Show Gist options
  • Save sanderpick/141223609e56f1196c60 to your computer and use it in GitHub Desktop.
Save sanderpick/141223609e56f1196c60 to your computer and use it in GitHub Desktop.
install zeromq on amazon ebs
packages:
yum:
gcc: []
make: []
libtool: []
autoconf: []
automake: []
uuid: []
uuid-devel: []
commands:
01-command:
command: "wget http://download.zeromq.org/zeromq-4.0.4.tar.gz"
02-command:
command: "tar -xzf zeromq-4.0.4.tar.gz"
03-command:
cwd: zeromq-4.0.4
command: "./configure"
04-command:
cwd: zeromq-4.0.4
command: "make"
05-command:
cwd: zeromq-4.0.4
command: "make install"
06-command:
command: "echo /usr/local/lib > /etc/ld.so.conf.d/local.conf"
07-command:
command: "ldconfig"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment