diff options
| author | Adam Vandenberg | 2013-11-12 21:03:26 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-12 21:42:50 -0800 |
| commit | a9a037c29d5d7bf184b65b1da2e4eecc378e0d0e (patch) | |
| tree | 8857b9190bc73c6dfd755aeb081315c80591c8e3 | |
| parent | 92f21294642d3ae25371586625016995722c9a8e (diff) | |
| download | homebrew-a9a037c29d5d7bf184b65b1da2e4eecc378e0d0e.tar.bz2 | |
cc65/grc conflict
| -rw-r--r-- | Library/Formula/cc65.rb | 3 | ||||
| -rw-r--r-- | Library/Formula/grc.rb | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/cc65.rb b/Library/Formula/cc65.rb index 07bcd4bed..cbc326feb 100644 --- a/Library/Formula/cc65.rb +++ b/Library/Formula/cc65.rb @@ -2,10 +2,11 @@ require 'formula' class Cc65 < Formula homepage 'http://www.cc65.org/' + head 'svn://svn.cc65.org/cc65/trunk' url 'ftp://ftp.musoftware.de/pub/uz/cc65/cc65-sources-2.13.3.tar.bz2' sha1 '925c6edfcef7057e24ecb0704fa07210faec07bc' - head 'svn://svn.cc65.org/cc65/trunk' + conflicts_with 'cc65', :because => 'both install `grc` binaries' def install ENV.deparallelize diff --git a/Library/Formula/grc.rb b/Library/Formula/grc.rb index a8c929b95..af06571b9 100644 --- a/Library/Formula/grc.rb +++ b/Library/Formula/grc.rb @@ -7,6 +7,8 @@ class Grc < Formula depends_on :python + conflicts_with 'cc65', :because => 'both install `grc` binaries' + def install #TODO we should deprefixify since it's python and thus possible inreplace ['grc', 'grc.1'], '/etc', etc |
