aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2013-07-01 23:16:38 +0100
committerMike McQuaid2013-07-01 23:16:38 +0100
commit9cff299789ccdc59555cd8513d75b3c378f18073 (patch)
tree89b2c59527e9cf41307a83d52f9bdf1536cd6669 /Library/Formula
parent1521ea9cf1a7de3fabe339d8aa1ac7a27ac80b2e (diff)
downloadhomebrew-9cff299789ccdc59555cd8513d75b3c378f18073.tar.bz2
Remove message from default_formula'd requirements
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mplayershell.rb11
-rw-r--r--Library/Formula/mu.rb11
-rw-r--r--Library/Formula/shocco.rb11
-rw-r--r--Library/Formula/signing-party.rb12
4 files changed, 0 insertions, 45 deletions
diff --git a/Library/Formula/mplayershell.rb b/Library/Formula/mplayershell.rb
index 479dc018c..b80ba6859 100644
--- a/Library/Formula/mplayershell.rb
+++ b/Library/Formula/mplayershell.rb
@@ -5,17 +5,6 @@ class MPlayerPresented < Requirement
default_formula 'mplayer'
satisfy { which('mplayer') || which('mplayer2') }
-
- def message; <<-EOS.undent
- MPlayerShell requires mplayer or mplayer2 to be installed.
-
- You can use either
- brew install mplayer
- or
- brew tap pigoz/mplayer2
- brew install mplayer2
- EOS
- end
end
class Mplayershell < Formula
diff --git a/Library/Formula/mu.rb b/Library/Formula/mu.rb
index 2d9d18f9a..c06db86d3 100644
--- a/Library/Formula/mu.rb
+++ b/Library/Formula/mu.rb
@@ -9,17 +9,6 @@ class Emacs23Installed < Requirement
`emacs --version 2>/dev/null` =~ /^GNU Emacs (\d{2})/
$1.to_i >= 23
end
-
- def message; <<-EOS.undent
- Emacs 23 or greater is required to build this software.
-
- You can install this with Homebrew:
- brew install emacs
-
- Or you can use any other Emacs distribution
- that provides version 23 or greater.
- EOS
- end
end
class Mu < Formula
diff --git a/Library/Formula/shocco.rb b/Library/Formula/shocco.rb
index 15dac128d..139d6b566 100644
--- a/Library/Formula/shocco.rb
+++ b/Library/Formula/shocco.rb
@@ -13,17 +13,6 @@ class MarkdownProvider < Requirement
default_formula 'markdown'
satisfy { which 'markdown' }
-
- def message; <<-EOS.undent
- shocco requires a `markdown` command.
-
- You can satisfy this requirement with either of two formulae:
- brew install markdown
- brew install discount
-
- Please install one and try again.
- EOS
- end
end
class Shocco < Formula
diff --git a/Library/Formula/signing-party.rb b/Library/Formula/signing-party.rb
index ecbb8c6b7..7622fe52b 100644
--- a/Library/Formula/signing-party.rb
+++ b/Library/Formula/signing-party.rb
@@ -5,18 +5,6 @@ class GnupgInstalled < Requirement
default_formula 'gnupg2'
satisfy { which('gpg') || which('gpg2') }
-
- def message; <<-EOS.undent
- Gnupg is required to use these tools.
-
- You can install Gnupg or Gnupg2 with Homebrew:
- brew install gnupg
- brew install gnupg2
-
- Or you can use one of several different
- prepackaged installers that are available.
- EOS
- end
end
class SigningParty < Formula