homebrew-core/Formula/clojurescript.rb

27 lines
798 B
Ruby
Raw Normal View History

2014-06-21 20:22:10 +00:00
require "formula"
class Clojurescript < Formula
2014-06-21 20:22:10 +00:00
homepage "https://github.com/clojure/clojurescript"
head "https://github.com/clojure/clojurescript.git"
2014-08-21 07:29:15 +00:00
url "https://github.com/clojure/clojurescript/archive/r2311.tar.gz"
sha1 "dfce06b02f8e89ab60cd87d02d7092c30ec1f362"
def install
system "./script/bootstrap"
inreplace %w(bin/cljsc script/repl script/repljs script/browser-repl),
"#!/bin/sh", "#!/bin/sh\nCLOJURESCRIPT_HOME=#{libexec}"
2014-06-21 20:22:10 +00:00
libexec.install Dir["*"]
bin.write_exec_script libexec/"bin/cljsc"
end
def caveats; <<-EOS.undent
This formula is useful if you need to use the ClojureScript compiler directly.
For a more integrated workflow, Leiningen with lein-cljsbuild is recommended.
EOS
end
test do
system "#{bin}/cljsc"
end
end