homebrew-core/Formula/clojure.rb
Alex Miller 74d77db2db
clojure 1.9.0.397
Closes #33084.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2018-10-18 03:20:55 +08:00

23 lines
574 B
Ruby

class Clojure < Formula
desc "The Clojure Programming Language"
homepage "https://clojure.org"
url "https://download.clojure.org/install/clojure-tools-1.9.0.397.tar.gz"
sha256 "5ed9b1d783560d06b3358a2d809fb0ab599d9ed6034919bf76c46e5eeea1a982"
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