homebrew-core/Formula/jbake.rb
Jonathan Bullock bdb9483477 jbake 2.6.0
2018-03-06 13:58:12 +01:00

20 lines
513 B
Ruby

class Jbake < Formula
desc "Java based static site/blog generator"
homepage "http://jbake.org"
url "https://bintray.com/jbake/binary/download_file?file_path=jbake-2.6.0-bin.zip"
sha256 "16ccf81446cea492e0919f9d19c2a93b55d35207bff27e938f3a9d1cc937fef8"
bottle :unneeded
depends_on :java => "1.7+"
def install
rm_f Dir["bin/*.bat"]
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/jbake"
end
test do
assert_match "Usage: jbake", shell_output("#{bin}/jbake")
end
end