aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/launch4j.rb
blob: 67a8eb77f04e34b6f2b5bdf3811ae8da2b34ea61 (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.3/launch4j-3.3-macosx-x86-10.8.tgz'
  sha1 '512e424d9e3eb697d70fda02ca6a204e246838b2'
  version '3.3'

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