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:
parent
9ae0a54685
commit
f26ac88a0e
1 changed files with 16 additions and 0 deletions
16
Formula/sleuthkit.rb
Normal file
16
Formula/sleuthkit.rb
Normal 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
|
Loading…
Reference in a new issue