homebrew-core/Formula/glassfish.rb
Matthew Montgomery aec4faa27f GlassFish 3.1.2
Closes Homebrew/homebrew#11395.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-02 18:41:33 -05:00

20 lines
464 B
Ruby

require 'formula'
class Glassfish < Formula
homepage 'http://glassfish.org/'
url 'http://download.java.net/glassfish/3.1.2/release/glassfish-3.1.2.zip'
md5 'a3a566302aa7bf20dcd44b9c79492680'
skip_clean :all
def install
rm_rf Dir['bin/*.bat']
libexec.install Dir['*']
bin.install_symlink Dir["#{libexec}/bin/*"]
inreplace "#{libexec}/bin/asadmin" do |s|
s.change_make_var! 'AS_INSTALL', "#{libexec}/glassfish"
end
end
end