homebrew-core/Formula/boot-clj.rb
Martin Klepsch 72e5add019 boot-clj 2.0.0 (new formula)
Closes Homebrew/homebrew#35540.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-22 11:37:41 +01:00

14 lines
368 B
Ruby

class BootClj < Formula
homepage "http://boot-clj.com"
url "https://github.com/boot-clj/boot/releases/download/2.0.0/boot.sh",
:using => :nounzip
sha256 "2cb80c684a665f1979d5362f040144ab9891b2135b42ac2e1763b2f241b67f43"
def install
bin.install "boot.sh" => "boot"
end
test do
system "#{bin}/boot", "repl", "-e", "(System/exit 0)"
end
end