f26ac88a0e
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>
16 lines
469 B
Ruby
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
|