diff options
| author | Adam Vandenberg | 2013-08-17 10:20:11 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-08-17 10:20:11 -0700 |
| commit | 9ac57d42ec3ac0c652bfdc5f236f13439c15e31f (patch) | |
| tree | 5febb5c40f5b1719ffbbc27c4d53082562b663d9 /Library/Formula | |
| parent | fef28141f4cf2ab869e92c4b153354a425680eb1 (diff) | |
| download | homebrew-9ac57d42ec3ac0c652bfdc5f236f13439c15e31f.tar.bz2 | |
Mark fb-client and findbugs as conflicting
Closes #21710.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fb-client.rb | 3 | ||||
| -rw-r--r-- | Library/Formula/findbugs.rb | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/fb-client.rb b/Library/Formula/fb-client.rb index 0cffddbe1..b9d53f693 100644 --- a/Library/Formula/fb-client.rb +++ b/Library/Formula/fb-client.rb @@ -5,6 +5,9 @@ class FbClient < Formula url 'https://paste.xinu.at/data/client/fb-1.1.4.tar.gz' sha1 '03483b5cdda9d27121941ddd10ffd20967f3f63b' + conflicts_with 'findbugs', + :because => "findbugs and fb-client both install a `fb` binary" + def install system "make", "PREFIX=#{prefix}", "install" end diff --git a/Library/Formula/findbugs.rb b/Library/Formula/findbugs.rb index 26dd49c2a..620495482 100644 --- a/Library/Formula/findbugs.rb +++ b/Library/Formula/findbugs.rb @@ -5,6 +5,9 @@ class Findbugs < Formula url 'http://downloads.sourceforge.net/project/findbugs/findbugs/2.0.2/findbugs-2.0.2.tar.gz' sha1 '3817d96e5143f513cb2945f14f50cdb6720d1f49' + conflicts_with 'fb-client', + :because => "findbugs and fb-client both install a `fb` binary" + def install # Remove windows files rm_f Dir["bin/*.bat"] |
