2010-09-20 20:04:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sleuthkit < Formula
|
2010-10-29 01:47:30 +00:00
|
|
|
head 'http://svn.sleuthkit.org/repos/sleuthkit/trunk', :using => :svn
|
2011-03-30 16:43:34 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sleuthkit/sleuthkit/3.2.1/sleuthkit-3.2.1.tar.gz'
|
2010-09-20 20:04:35 +00:00
|
|
|
homepage 'http://www.sleuthkit.org/'
|
2011-03-30 16:43:34 +00:00
|
|
|
md5 'd873361cb5ef29f02c7107f9aec39b4f'
|
2010-09-20 20:04:35 +00:00
|
|
|
|
|
|
|
depends_on 'afflib' => :optional
|
|
|
|
depends_on 'libewf' => :optional
|
|
|
|
|
|
|
|
def install
|
2010-12-18 14:20:18 +00:00
|
|
|
if ARGV.build_head?
|
2010-10-29 01:47:30 +00:00
|
|
|
system "glibtoolize"
|
|
|
|
system "aclocal"
|
|
|
|
system "automake", "--add-missing", "--copy"
|
|
|
|
system "autoconf"
|
|
|
|
end
|
2010-09-20 20:04:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|