blob: 53df2e8e4d4c1ab36f3bd70ed38cd926b1ab6fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|