aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark A. Matienzo2012-07-26 11:19:38 -0400
committerAdam Vandenberg2012-07-26 09:12:28 -0700
commit8f64e8d998c7c5f3c5e3b33e66f1b596329ea397 (patch)
treeb0441fb0f25a8de502e296b1c99db3a7725a98e6
parent55481bbd810f8c76cece16ccd07bd58a7e69dc95 (diff)
downloadhomebrew-8f64e8d998c7c5f3c5e3b33e66f1b596329ea397.tar.bz2
bulk_extractor: add devel (1.3b5)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/bulk_extractor.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/Library/Formula/bulk_extractor.rb b/Library/Formula/bulk_extractor.rb
index 93c3dcf0d..94a7b56f0 100644
--- a/Library/Formula/bulk_extractor.rb
+++ b/Library/Formula/bulk_extractor.rb
@@ -5,6 +5,11 @@ class BulkExtractor < Formula
url 'https://github.com/downloads/simsong/bulk_extractor/bulk_extractor-1.2.2.tar.gz'
sha1 '2f0a2049259f826afe253cf5baeeb139b795dddb'
+ devel do
+ url 'https://github.com/downloads/simsong/bulk_extractor/bulk_extractor-1.3b5.tar.gz'
+ sha1 '04a3d49f35efc7381ae1d3f516bdad273a0f49ee'
+ end
+
depends_on :autoconf
depends_on :automake
@@ -19,15 +24,15 @@ class BulkExtractor < Formula
system "make install"
# Install documentation
- (share+name+'doc').install Dir['doc/*.{html,txt,pdf}']
+ (share/'bulk_extractor/doc').install Dir['doc/*.{html,txt,pdf}']
# Install Python utilities
- (share+name+'python').install Dir['python/*.py']
+ (share/'bulk_extractor/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
+ #{share}/bulk_extractor/python
EOS
end
end