diff options
| author | Adam Vandenberg | 2013-11-06 07:33:57 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-11-06 07:33:57 -0800 | 
| commit | b7b10bd7016d5eacd5572d13eb8dcaa637fecfc0 (patch) | |
| tree | 53fc2f3349a91e681c325b519e070d7966b64b71 | |
| parent | 44172bf9ae302cebb0c8e4145129dc1f1badc67d (diff) | |
| download | homebrew-b7b10bd7016d5eacd5572d13eb8dcaa637fecfc0.tar.bz2 | |
logentries and le conflict
| -rw-r--r-- | Library/Formula/le.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/logentries.rb | 2 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/Library/Formula/le.rb b/Library/Formula/le.rb index a6c05d4cc..d97177209 100644 --- a/Library/Formula/le.rb +++ b/Library/Formula/le.rb @@ -7,6 +7,8 @@ class Le < Formula    url 'http://ftp.de.debian.org/debian/pool/main/l/le/le_1.14.9.orig.tar.gz'    sha1 'ce85cbefb30cf1f5a7e8349dbb24ffa0f65b1fd7' +  conflicts_with 'logentries', :because => 'both install a le binary' +    def install      ENV.j1      system "./configure", "--disable-dependency-tracking", diff --git a/Library/Formula/logentries.rb b/Library/Formula/logentries.rb index 160c18d4c..bb1b7d706 100644 --- a/Library/Formula/logentries.rb +++ b/Library/Formula/logentries.rb @@ -5,6 +5,8 @@ class Logentries < Formula    url 'https://github.com/logentries/le/archive/v1.2.14.tar.gz'    sha1 'd0b8073c7d5cae990b186bacf1bb2e2d39c544a5' +  conflicts_with 'le', :because => 'both install a le binary' +    def install      bin.install 'le'    end | 
