36 lines
1.0 KiB
Ruby
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.1165.tar.gz"
|
|
sha256 "517ba45cfe83b750a58f8246bcee569ae149d8724690f2dbc8ff3187153fe9d1"
|
|
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: "42c404254094b5b8623e097dfd56cadbf5989aa6122e1b0d0c748642434c5f67"
|
|
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
|