homebrew-core/Formula/clojure.rb

36 lines
1.0 KiB
Ruby

class Clojure < Formula
desc "Dynamic, general-purpose programming language"
homepage "https://clojure.org"
url "https://download.clojure.org/install/clojure-tools-1.11.1.1200.tar.gz"
sha256 "dbde9c4bdd42b7da5a67d879548b4528e4903ce73ee26c329626b6165d57b61c"
license "EPL-1.0"
version_scheme 1
livecheck do
url "https://raw.githubusercontent.com/clojure/homebrew-tools/master/Formula/clojure.rb"
regex(/url ".*?clojure-tools-v?(\d+(?:\.\d+)+)\.t/i)
end
bottle do
sha256 cellar: :any_skip_relocation, all: "4fbd839618f5808db69500f795fbd2bc2267d9fe7b1534a8b13584faaf26e224"
end
depends_on "openjdk"
depends_on "rlwrap"
uses_from_macos "ruby" => :build
def install
system "./install.sh", prefix
bin.env_script_all_files libexec/"bin", Language::Java.overridable_java_home_env
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