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