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.10.3.967.tar.gz"
sha256 "bba6952e164cd3d449794e226145c1a1b1725cca5dd8a7446b35926ea7235702"
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: "82256ec9b6fed7f0686732405c164125bf85107acc8af0edc3fa294680ef3a91"
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