aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorChris Allen2013-08-17 12:28:25 +0100
committerMike McQuaid2013-08-17 12:29:53 +0100
commitecb78d54c03b030fa3d1bc7be202f1d85e89bdc5 (patch)
tree0d00c8159381388be0af26e86f07bcccb37bd8f0 /Library
parente99813240664884e736119956459d8b8250c3af7 (diff)
downloadbrew-ecb78d54c03b030fa3d1bc7be202f1d85e89bdc5.tar.bz2
clojure: remove, blacklist in favour of leiningen.
Closes Homebrew/homebrew#21733. Closes Homebrew/homebrew#21782. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/blacklist.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb
index 9dea721b8..f3aa60d53 100644
--- a/Library/Homebrew/blacklist.rb
+++ b/Library/Homebrew/blacklist.rb
@@ -62,5 +62,14 @@ def blacklisted? name
when 'gsutil' then <<-EOS.undent
Install gsutil with `pip install gsutil`
EOS
+ when 'clojure' then <<-EOS.undent
+ Clojure isn't really a program but a library managed as part of a
+ project and Leiningen is the user interface to that library.
+
+ To install Clojure you should install Leiningen:
+ brew install leiningen
+ and then follow the tutorial:
+ https://github.com/technomancy/leiningen/blob/stable/doc/TUTORIAL.md
+ EOS
end
end