homebrew-core/Formula/clojurescript.rb
Igor Kapkov 2afbb257fe
clojurescript 1.10.439
Closes #34122.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2018-11-16 16:05:57 +08:00

32 lines
857 B
Ruby

class Clojurescript < Formula
desc "Clojure to JS compiler"
homepage "https://github.com/clojure/clojurescript"
url "https://github.com/clojure/clojurescript/releases/download/r1.10.439/cljs.jar"
sha256 "969d36628b2d65f1cb206b157342b17732d30a1c4c5d250056d97802a8742cef"
head "https://github.com/clojure/clojurescript.git"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install "cljs.jar"
bin.write_jar_script libexec/"cljs.jar", "cljsc"
end
def caveats; <<~EOS
This formula is useful if you need to use the ClojureScript compiler directly.
For a more integrated workflow use Leiningen, Boot, or Maven.
EOS
end
test do
(testpath/"t.cljs").write <<~EOS
(ns hello)
(defn ^:export greet [n]
(str "Hello " n))
EOS
system "#{bin}/cljsc", testpath/"t.cljs"
end
end