homebrew-core/Formula/sleuthkit.rb
Mark A. Matienzo f26ac88a0e New formula: sleuthkit
The Sleuth Kit (previously known as TASK) is a collection of UNIX-based command line file and volume system forensic analysis tools. The file system tools allow you to examine file systems of a suspect computer in a non-intrusive fashion. Because the tools do not rely on the operating system to process the file systems, deleted and hidden content is shown.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-20 15:18:37 -07:00

16 lines
469 B
Ruby

require 'formula'
class Sleuthkit <Formula
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
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end