aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-11 13:04:13 -0700
committerAdam Vandenberg2013-06-11 13:04:13 -0700
commit2dbadd0dbfc572902e3d0af0f087ebc1a016b88f (patch)
tree69764603cb21b323f65c70a41fc0412b1c018847 /Library
parentfa2fdef1faa652cd07da2e579cb53953a0e14852 (diff)
downloadhomebrew-2dbadd0dbfc572902e3d0af0f087ebc1a016b88f.tar.bz2
rakudo-star: replace caveats with conflicts_with
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/parrot.rb2
-rw-r--r--Library/Formula/rakudo-star.rb9
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