diff options
| author | Jack Nagel | 2013-09-27 14:17:27 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-09-27 14:17:27 -0500 |
| commit | 9905336cddb489fa047ba48ee43bd13962d48457 (patch) | |
| tree | ad5a53f6027ddce9222880e65a21639c17fae519 /Library/Formula | |
| parent | 7bc56cf5e44f98569841828b6e3b89abcf3b0e91 (diff) | |
| download | homebrew-9905336cddb489fa047ba48ee43bd13962d48457.tar.bz2 | |
tcpflow: remove libtool files hack
This doesn't seem to be necessary anymore; MacPorts stopped doing it two
years ago.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tcpflow.rb | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/Library/Formula/tcpflow.rb b/Library/Formula/tcpflow.rb index 2e634aca7..a64f5cba1 100644 --- a/Library/Formula/tcpflow.rb +++ b/Library/Formula/tcpflow.rb @@ -8,24 +8,10 @@ class Tcpflow < Formula head do url 'https://github.com/simsong/tcpflow.git' depends_on :automake - end - - depends_on :libtool - - def copy_libtool_files! - if not MacOS::Xcode.provides_autotools? - s = Formula.factory('libtool').share - d = "#{s}/libtool/config" - cp ["#{d}/config.guess", "#{d}/config.sub"], "." - elsif MacOS.version <= :leopard - cp Dir["#{MacOS::Xcode.prefix}/usr/share/libtool/config.*"], "." - else - cp Dir["#{MacOS::Xcode.prefix}/usr/share/libtool/config/config.*"], "." - end + depends_on :libtool end def install - copy_libtool_files! system "bash", "./bootstrap.sh" if build.head? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", |
