homebrew-core/Formula/sleuthkit.rb
Mark A. Matienzo 9538b75a19 Update formula: sleuthkit (add HEAD)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-28 19:48:19 -07:00

23 lines
697 B
Ruby

require 'formula'
class Sleuthkit <Formula
head 'http://svn.sleuthkit.org/repos/sleuthkit/trunk', :using => :svn
url 'http://downloads.sourceforge.net/project/sleuthkit/sleuthkit/3.1.3/sleuthkit-3.1.3.tar.gz'
homepage 'http://www.sleuthkit.org/'
md5 'e1798bede2112ec4c5770151c3e32bfd'
depends_on 'afflib' => :optional
depends_on 'libewf' => :optional
def install
if ARGV.build_head
system "glibtoolize"
system "aclocal"
system "automake", "--add-missing", "--copy"
system "autoconf"
end
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end