071587cc0c
boot-clj: 2.2.0 https://github.com/boot-clj/boot/blob/master/CHANGES.md Closes Homebrew/homebrew#42559. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
15 lines
403 B
Ruby
15 lines
403 B
Ruby
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"
|
|
|
|
def install
|
|
bin.install "boot.sh" => "boot"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/boot", "repl", "-e", "(System/exit 0)"
|
|
end
|
|
end
|