diff options
| author | Kirk Stork | 2014-08-31 17:27:01 -0700 |
|---|---|---|
| committer | Jack Nagel | 2014-09-04 11:47:44 -0500 |
| commit | ace693a516dc3d6f7bb2a250ae42e6f6b7972ea5 (patch) | |
| tree | de7be9fe205a0fcf703a565f72304a62f823f6a4 /Library/Formula/jbake.rb | |
| parent | 6f8b56b88843c3af34a9a3ab33143e91e6edb3a2 (diff) | |
| download | homebrew-ace693a516dc3d6f7bb2a250ae42e6f6b7972ea5.tar.bz2 | |
jbake 2.3.1
Closes #32012.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/jbake.rb')
| -rw-r--r-- | Library/Formula/jbake.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/jbake.rb b/Library/Formula/jbake.rb new file mode 100644 index 000000000..53df2e8e4 --- /dev/null +++ b/Library/Formula/jbake.rb @@ -0,0 +1,14 @@ +require "formula" + +class Jbake < Formula + homepage "http://jbake.org" + url "http://jbake.org/files/jbake-2.3.1-bin.zip" + sha1 "b429a89a66c021a70394e0207d71a703de58d85b" + + def install + rm_f Dir["bin/*.bat"] + prefix.install_metafiles + libexec.install Dir["*"] + bin.write_jar_script "#{libexec}/jbake-core.jar", "jbake" + end +end |
