summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2019-10-24 21:50:27 +0200
committerjvoisin2019-10-24 21:50:27 +0200
commitfe00ad8cfc133ea8725f4672b080ccdb1db388f7 (patch)
tree26f07d53214586abd9d46e8f1ba587489b635ed0
parent2eaca5164f8ba9ad43ddb645a547d393508d0590 (diff)
Add doc on how to compile yara
Prompted by jdnrg@
Diffstat (limited to '')
-rw-r--r--README.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7f9b098..896ffcd 100644
--- a/README.md
+++ b/README.md
@@ -61,8 +61,17 @@ and then passed to some dangerous function like `system`".
61## Installation 61## Installation
62- [Install Yara](https://yara.readthedocs.io/en/stable/gettingstarted.html#compiling-and-installing-yara). 62- [Install Yara](https://yara.readthedocs.io/en/stable/gettingstarted.html#compiling-and-installing-yara).
63This is also possible via some Linux package managers: 63This is also possible via some Linux package managers:
64Debian: `sudo apt-get install yara` 64 - Debian: `sudo apt-get install yara`
65Red Hat: `yum install yara` (requires the [EPEL repository](https://fedoraproject.org/wiki/EPEL)) 65 - Red Hat: `yum install yara` (requires the [EPEL repository](https://fedoraproject.org/wiki/EPEL))
66
67You can also compile it from source:
68
69```
70git clone git@github.com:VirusTotal/yara.git
71cd yara/
72YACC=bison ./configure
73make
74```
66 75
67- Download php-malware-finder `git clone https://github.com/nbs-system/php-malware-finder.git` 76- Download php-malware-finder `git clone https://github.com/nbs-system/php-malware-finder.git`
68 77