aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/launch4j.rb
blob: ef93e1a32da0f73128920277cbab71149d2ff00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require "formula"

class Launch4j < Formula
  homepage "http://launch4j.sourceforge.net/"
  url "https://downloads.sourceforge.net/project/launch4j/launch4j-3/3.4/launch4j-3.4-macosx-x86-10.8.tgz"
  sha1 "e3483f4fc835d048ed7352961c3d39e80dbacb87"
  version "3.4"

  def install
    libexec.install Dir["*"] - ["src", "web"]
    bin.write_jar_script libexec/"launch4j.jar", "launch4j"
  end
end