aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yara.rb
blob: 8128b5a0e34b2388daffc9e296c73fbd5dcd3c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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