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.10.3.849.tar.gz"
|
|
sha256 "d1b1dbe85b0264fd4b771636d7e873ea517e91af4dd32a081d459577ecdcef08"
|
|
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: "380c6cfe31a0e8052a7450ef047f766fcd2c181bb175e4eaa84820277e79a8a0"
|
|
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
|