2010-07-26 18:37:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Yara < Formula
|
2010-07-26 18:37:46 +00:00
|
|
|
homepage 'http://code.google.com/p/yara-project/'
|
2012-02-24 22:51:33 +00:00
|
|
|
url 'http://yara-project.googlecode.com/files/yara-1.4.tar.gz'
|
2010-07-26 18:37:46 +00:00
|
|
|
md5 'ecc744a67482dc9d717936ccd69dc39f'
|
|
|
|
|
|
|
|
depends_on 'pcre'
|
|
|
|
|
|
|
|
def install
|
2012-02-24 22:51:33 +00:00
|
|
|
# find Homebrew's libpcre
|
|
|
|
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
|
|
|
|
|
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-07-26 18:37:46 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|