aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sleuthkit.rb
diff options
context:
space:
mode:
authorMark A. Matienzo2010-09-20 16:04:35 -0400
committerAdam Vandenberg2010-09-20 15:18:37 -0700
commitb58f970f4509831a5b479d5947a8c2dbee582d6b (patch)
tree438ec88e0a077399f436d7c1ab9982ef652223e0 /Library/Formula/sleuthkit.rb
parent46a992a1cc6a08882e960fa47f6d1ad70bfc9339 (diff)
downloadhomebrew-b58f970f4509831a5b479d5947a8c2dbee582d6b.tar.bz2
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>
Diffstat (limited to 'Library/Formula/sleuthkit.rb')
-rw-r--r--Library/Formula/sleuthkit.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/sleuthkit.rb b/Library/Formula/sleuthkit.rb
new file mode 100644
index 000000000..5d1c429eb
--- /dev/null
+++ b/Library/Formula/sleuthkit.rb
@@ -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