From ba904118f591b5cb751dd2de8331fc7e943d9a78 Mon Sep 17 00:00:00 2001 From: Mark A. Matienzo Date: Wed, 13 Apr 2011 21:57:04 -0400 Subject: New formula: bulk_extractor bulk_extractor is a C++ program that scans a disk image (or any other file) and extracts useful information—without parsing the file system. It is like a combination of "strings" and "grep" with a whole bunch of useful patterns, including domain names, email addresses, etc. bulk_extractor will also perform a histogram analysis on the resulting extracted features. Signed-off-by: Adam Vandenberg --- Library/Formula/bulk_extractor.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Library/Formula/bulk_extractor.rb (limited to 'Library/Formula') diff --git a/Library/Formula/bulk_extractor.rb b/Library/Formula/bulk_extractor.rb new file mode 100644 index 000000000..3be93e6e8 --- /dev/null +++ b/Library/Formula/bulk_extractor.rb @@ -0,0 +1,16 @@ +require 'formula' + +class BulkExtractor < Formula + url 'http://afflib.org/downloads/bulk_extractor-0.7.18.tar.gz' + homepage 'http://afflib.org/software/bulk_extractor' + md5 '680ee243ca04d23b1059e972c53d59ce' + + depends_on 'afflib' => :optional + depends_on 'libewf' => :optional + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end -- cgit v1.2.3