mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-26 07:44:29 +00:00
13 lines
233 B
Bash
Executable File
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
|