homebrew-core/Formula/clojurescript.rb
2018-05-03 07:16:38 -07:00

32 lines
859 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.238/cljs.jar"
sha256 "4c1746a365f01fa22069d49354391d3c0e9c233f91b17c5f488a0a7f5e3784ce"
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