Skip to content

Instantly share code, notes, and snippets.

@chapinb
Last active August 29, 2015 14:10
Show Gist options
  • Save chapinb/85c632badf5c43a86dec to your computer and use it in GitHub Desktop.
Save chapinb/85c632badf5c43a86dec to your computer and use it in GitHub Desktop.
Install Yara
#!/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