diff options
| -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 |
