diff options
| author | Mark A. Matienzo | 2012-04-23 00:16:49 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-24 20:27:25 -0700 |
| commit | 257b0efa457d2c420a2350d660e60a1d33aaa1d9 (patch) | |
| tree | 0cc0b56c390644157cc4ebd7d1e5d1d01354ff7a /Library/Formula | |
| parent | d06521aacdc1b693786f91a405d36fb25c68a77e (diff) | |
| download | homebrew-257b0efa457d2c420a2350d660e60a1d33aaa1d9.tar.bz2 | |
bulk_extractor 1.2.1
add automake/autoconf dependencies if XCode >= 4.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/bulk_extractor.rb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Formula/bulk_extractor.rb b/Library/Formula/bulk_extractor.rb index 6f925a7b3..6319908ec 100644 --- a/Library/Formula/bulk_extractor.rb +++ b/Library/Formula/bulk_extractor.rb @@ -2,15 +2,18 @@ require 'formula' class BulkExtractor < Formula homepage 'http://afflib.org/software/bulk_extractor' - url 'https://github.com/downloads/simsong/bulk_extractor/bulk_extractor-1.2.0.tar.gz' - md5 '95172e2a149681054b712890e8fdad57' + url 'https://github.com/downloads/simsong/bulk_extractor/bulk_extractor-1.2.1.tar.gz' + md5 '44f51d5a89b70cd4985cef2c57718801' depends_on 'afflib' => :optional depends_on 'exiv2' => :optional depends_on 'libewf' => :optional + depends_on 'autoconf' if MacOS.xcode_version >= "4.3" + depends_on 'automake' if MacOS.xcode_version >= "4.3" def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "autoreconf", "-i" + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
