2014-09-01 00:27:01 +00:00
|
|
|
class Jbake < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Java based static site/blog generator"
|
2014-09-01 00:27:01 +00:00
|
|
|
homepage "http://jbake.org"
|
2015-06-01 20:33:26 +00:00
|
|
|
url "http://jbake.org/files/jbake-2.4.0-bin.zip"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "c255b34ac0a87b5fe8f679e59375651f6bcc0e575da6209841c80a2e07d16cc4"
|
2014-09-01 00:27:01 +00:00
|
|
|
|
2015-10-22 13:40:49 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2014-09-01 00:27:01 +00:00
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
bin.write_jar_script "#{libexec}/jbake-core.jar", "jbake"
|
|
|
|
end
|
|
|
|
end
|