radare2/sys/yara.sh
2014-04-27 02:55:18 +02:00

13 lines
233 B
Bash
Executable File

#!/bin/sh
PREFIX=/usr
MAKE=make
SUDO=sudo
rm -rf yara
git clone https://github.com/plusvic/yara.git || exit 1
cd yara || exit 1
sh bootstrap.sh
./configure --prefix=${PREFIX} || exit 1
${MAKE} || exit 1
exec ${SUDO} ${MAKE} install