bulk_extractor 0.7.24

Also install Python support files.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Mark A. Matienzo 2011-06-14 12:21:14 -04:00 committed by Adam Vandenberg
parent 7d2ca8efb0
commit f3f68a1bb5

View file

@ -1,9 +1,9 @@
require 'formula'
class BulkExtractor < Formula
url 'http://afflib.org/downloads/bulk_extractor-0.7.18.tar.gz'
url 'http://afflib.org/downloads/bulk_extractor-0.7.24.tar.gz'
homepage 'http://afflib.org/software/bulk_extractor'
md5 '680ee243ca04d23b1059e972c53d59ce'
md5 '86c2681b0c938ba9eb0a630f0f66db1e'
depends_on 'afflib' => :optional
depends_on 'exiv2' => :optional
@ -13,5 +13,14 @@ class BulkExtractor < Formula
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
# Install Python utilities
(share+name+'python').install Dir['python/*.py']
end
def caveats; <<-EOS.undent
You may need to add the directory containing the Python bindings to your PYTHONPATH:
#{share+name}/python
EOS
end
end