summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorsknigh <sknigh@sandia.gov>2019-03-19 20:55:02 -0700
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-03-20 04:55:02 +0100
commite717230bf8a0a7ea6db8ed1d13e2ebf6b0fbb08c (patch)
treeaf6ef6c38ef29a7611fc88ed53c9aa07cd53d439 /var
parent9a8c4cf071a760e3a86d5bfa7d32d5ab8dcf0629 (diff)
downloadspack-e717230bf8a0a7ea6db8ed1d13e2ebf6b0fbb08c.tar.gz
spack-e717230bf8a0a7ea6db8ed1d13e2ebf6b0fbb08c.tar.bz2
spack-e717230bf8a0a7ea6db8ed1d13e2ebf6b0fbb08c.tar.xz
spack-e717230bf8a0a7ea6db8ed1d13e2ebf6b0fbb08c.zip
added yara (#10901)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/yara/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/yara/package.py b/var/spack/repos/builtin/packages/yara/package.py
new file mode 100644
index 0000000000..ec4df8b564
--- /dev/null
+++ b/var/spack/repos/builtin/packages/yara/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class Yara(AutotoolsPackage):
+ """YARA is a tool aimed at (but not limited to) helping malware researchers
+ to identify and classify malware samples"""
+
+ homepage = "http://virustotal.github.io/yara/"
+ url = "https://github.com/VirusTotal/yara/archive/v3.9.0.tar.gz"
+
+ version('3.9.0', sha256='ebe7fab0abadb90449a62afbd24e196e18b177efe71ffd8bf22df95c5386f64d')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')