homebrew-core/Formula/clojure.rb
Alex Miller d29754bfe4
clojure 1.10.1.445
Closes #40754.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-06-06 13:21:08 -07:00

23 lines
575 B
Ruby

class Clojure < Formula
desc "The Clojure Programming Language"
homepage "https://clojure.org"
url "https://download.clojure.org/install/clojure-tools-1.10.1.445.tar.gz"
sha256 "22ec52229b3a634bd435aeb42d8943b952094d8cf4fe796b8310ffed23eb5e61"
bottle :unneeded
depends_on :java => "1.8+"
depends_on "rlwrap"
def install
system "./install.sh", prefix
end
test do
ENV["TERM"] = "xterm"
system("#{bin}/clj -e nil")
%w[clojure clj].each do |clj|
assert_equal "2", shell_output("#{bin}/#{clj} -e \"(+ 1 1)\"").strip
end
end
end