diff options
| author | Charlie Sharpsteen | 2013-01-05 21:30:08 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2013-01-05 22:05:28 -0800 |
| commit | 0e91da540953c099c2085a2aa81048661ca7b3b1 (patch) | |
| tree | 91ffcdf07cadfdf0d97e23de7ca830294cc9767d /Library | |
| parent | 717776935967ef899fdba6cb6666d5294bd44af7 (diff) | |
| download | homebrew-0e91da540953c099c2085a2aa81048661ca7b3b1.tar.bz2 | |
tesseract: Don't run autogen.sh
A call to `autogen.sh` was introduced in 64bb607 because version 3.01 of
tesseract shipped without a `Makefile.in`. This has been corrected, so
re-generating the buildsystem is no longer necessary.
Also, the current `configure.ac` is no longer compatible with automake 1.13 so
builds were failing. Upstream issue:
http://code.google.com/p/tesseract-ocr/issues/detail?id=819
Closes #16917.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/tesseract.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Library/Formula/tesseract.rb b/Library/Formula/tesseract.rb index 77a152dcc..8c6fdddb1 100644 --- a/Library/Formula/tesseract.rb +++ b/Library/Formula/tesseract.rb @@ -86,8 +86,6 @@ class Tesseract < Formula option "all-languages", "Install recognition data for all languages" - depends_on :automake - depends_on :libtool depends_on 'libtiff' depends_on 'leptonica' @@ -97,8 +95,6 @@ class Tesseract < Formula end def install - system "/bin/sh autogen.sh" - # explicitly state leptonica header location, as the makefile defaults to /usr/local/include, # which doesn't work for non-default homebrew location ENV['LIBLEPT_HEADERSDIR'] = HOMEBREW_PREFIX/"include" |
