homebrew-core/Formula/jbake.rb
Jonathan Bullock 1bdf4745c0
jbake 2.6.1
Closes #26697.

Signed-off-by: William Woodruff <william@yossarian.net>
2018-04-16 21:37:30 -04:00

20 lines
494 B
Ruby

class Jbake < Formula
desc "Java based static site/blog generator"
homepage "https://jbake.org/"
url "https://dl.bintray.com/jbake/binary/jbake-2.6.1-bin.zip"
sha256 "2cb17bee2bed09e7e251f727ddf73b15cbed9c5e3bed277cf7b4d329c89bdf14"
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