diff options
| -rw-r--r-- | Library/Formula/parrot.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/rakudo-star.rb | 9 |
2 files changed, 4 insertions, 7 deletions
diff --git a/Library/Formula/parrot.rb b/Library/Formula/parrot.rb index f5e2c7a04..ee89d59ed 100644 --- a/Library/Formula/parrot.rb +++ b/Library/Formula/parrot.rb @@ -12,6 +12,8 @@ class Parrot < Formula head 'https://github.com/parrot/parrot.git' + conflicts_with 'rakudo-star' + depends_on 'gmp' => :optional depends_on 'icu4c' => :optional depends_on 'pcre' => :optional diff --git a/Library/Formula/rakudo-star.rb b/Library/Formula/rakudo-star.rb index da286f958..86c526496 100644 --- a/Library/Formula/rakudo-star.rb +++ b/Library/Formula/rakudo-star.rb @@ -5,6 +5,8 @@ class RakudoStar < Formula url 'http://rakudo.org/downloads/star/rakudo-star-2013.05.tar.gz' sha256 '4eeb7116bf432a8c439fc0db53294364fa723ae32659f31547a62fa7cd2e3384' + conflicts_with 'parrot' + depends_on 'gmp' => :optional depends_on 'icu4c' => :optional depends_on 'pcre' => :optional @@ -22,11 +24,4 @@ class RakudoStar < Formula # move the man pages out of the top level into share. mv "#{prefix}/man", share end - - def caveats; <<-EOS - Rakudo Star comes with its own specific version of Parrot. Installing the - Parrot formula along side the Rakudo Star formula will override a number - of the binaries (eg. parrot, nqp, winxed, etc.). - EOS - end end |
