aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMark A. Matienzo2011-06-14 12:21:14 -0400
committerAdam Vandenberg2011-06-14 09:27:01 -0700
commit7eeeae570d1813bb5500b44be8b041f27e871e3b (patch)
tree32259b639f2b7109c5ddd5a5232507be4b06b709 /Library/Formula
parentb9741b42a35b676b507cdd2d54b55e374704652e (diff)
downloadhomebrew-7eeeae570d1813bb5500b44be8b041f27e871e3b.tar.bz2
bulk_extractor 0.7.24
Also install Python support files. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/bulk_extractor.rb13
1 files changed, 11 insertions, 2 deletions
diff --git a/Library/Formula/bulk_extractor.rb b/Library/Formula/bulk_extractor.rb
index d6e2fa9b8..44f87348f 100644
--- a/Library/Formula/bulk_extractor.rb
+++ b/Library/Formula/bulk_extractor.rb
@@ -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