Last active
August 29, 2015 14:05
-
-
Save martincharlesworth/4d73b38125f0f554292e to your computer and use it in GitHub Desktop.
Install Suricata on OS X Mavericks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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