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>
This commit is contained in:
Mark A. Matienzo 2010-09-20 16:04:35 -04:00 committed by Adam Vandenberg
parent 9ae0a54685
commit f26ac88a0e

16
Formula/sleuthkit.rb Normal file
View file

@ -0,0 +1,16 @@
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