Last active
August 29, 2015 14:10
-
-
Save chapinb/85c632badf5c43a86dec to your computer and use it in GitHub Desktop.
Install Yara
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/bash | |
# Written by CBRYCE on 11/23/14 | |
# Licensed under GPLv3 | |
# Update everything | |
sudo apt-get update && sudo apt-get upgrade -y | |
# install dependencies | |
sudo apt-get install git autotools-dev aclocal automake pkg-config -y | |
# pull code | |
wget https://github.com/plusvic/yara/archive/v3.2.0.tar.gz | |
# untar | |
tar zxvf v3.2.0.tar.gz | |
# boostrap | |
cd yara-3.2.0 | |
./bootstrap.sh | |
autoreconf -i | |
./configure | |
# build | |
make | |
sudo make install | |
# verify installation | |
yara -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment