545a765549
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
538 B
Ruby
22 lines
538 B
Ruby
require 'formula'
|
|
|
|
class Glassfish < Formula
|
|
url 'http://download.java.net/glassfish/3.1.1/release/glassfish-3.1.1.zip'
|
|
homepage 'http://glassfish.org/'
|
|
md5 'bf92c2c99b3d53b83bbc8c7e2124a897'
|
|
|
|
skip_clean :all
|
|
|
|
def install
|
|
rm_rf Dir['bin/*.bat']
|
|
libexec.install Dir['*']
|
|
bin.mkpath
|
|
Dir["#{libexec}/bin/*"].each do |f|
|
|
ln_s f, bin
|
|
chmod 0755, (bin + File.basename(f))
|
|
end
|
|
inreplace "#{libexec}/bin/asadmin" do |s|
|
|
s.change_make_var! 'AS_INSTALL', "#{libexec}/glassfish"
|
|
end
|
|
end
|
|
end
|