homebrew-core/Formula/boot-clj.rb

18 lines
423 B
Ruby
Raw Normal View History

class BootClj < Formula
desc "Build tooling for Clojure"
homepage "http://boot-clj.com"
url "https://github.com/boot-clj/boot/releases/download/2.2.0/boot.sh",
:using => :nounzip
sha256 "2e7d9c501ba3e59ae9f23ce21a8a9f8d24177a346238ee3710f7dd0adbddea33"
2015-10-23 08:32:56 +00:00
bottle :unneeded
def install
bin.install "boot.sh" => "boot"
end
test do
system "#{bin}/boot", "repl", "-e", "(System/exit 0)"
end
end