diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/yara.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/yara.rb b/Library/Formula/yara.rb new file mode 100644 index 000000000..b49a32b0b --- /dev/null +++ b/Library/Formula/yara.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Yara <Formula + url 'http://yara-project.googlecode.com/files/yara-1.4.tar.gz' + homepage 'http://code.google.com/p/yara-project/' + md5 'ecc744a67482dc9d717936ccd69dc39f' + + depends_on 'pcre' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
