Skip to content

Instantly share code, notes, and snippets.

@martincharlesworth
Last active August 29, 2015 14:05
Show Gist options
  • Save martincharlesworth/4d73b38125f0f554292e to your computer and use it in GitHub Desktop.
Save martincharlesworth/4d73b38125f0f554292e to your computer and use it in GitHub Desktop.
Install Suricata on OS X Mavericks
#!/bin/sh
curl -O ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.tar.gz
tar xvzf pcre-8.35.tar.gz
cd pcre-8.35
./configure --enable-jit
make
sudo make install
curl -O http://www.openinfosecfoundation.org/download/suricata-2.0.3.tar.gz
tar xvzf suricata-2.0.3.tar.gz
cd suricata-2.0.3
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --with-libpcre-libraries=/usr/local/lib --with-libpcre-includes=/usr/local/include
make
sudo make install-full
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment