aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jbake.rb
blob: f71d000c3a7dbd6c90dc859624d862028c1377e1 (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.2-bin.zip"
  sha1 "8daa2603b0277ee92ba216cf1d7e2d706f489382"

  def install
    rm_f Dir["bin/*.bat"]
    prefix.install_metafiles
    libexec.install Dir["*"]
    bin.write_jar_script "#{libexec}/jbake-core.jar", "jbake"
  end
end