homebrew-core/Formula/jboss-as.rb

30 lines
881 B
Ruby
Raw Normal View History

class JbossAs < Formula
desc "JBoss Application Server"
homepage "http://www.jboss.org/jbossas"
url "http://download.jboss.org/jbossas/7.1/jboss-as-7.1.1.Final/jboss-as-7.1.1.Final.tar.gz"
version "7.1.1.Final"
sha256 "88fd3fdac4f7951cee3396eff3d70e8166c3319de82d77374a24e3b422e0b2ad"
2015-10-23 11:55:12 +00:00
bottle :unneeded
def install
rm_f Dir["bin/*.bat"]
libexec.install Dir["*"]
end
def caveats; <<-EOS.undent
2013-03-17 15:52:17 +00:00
The home of JBoss Application Server 7 is:
2014-03-06 05:28:31 +00:00
#{opt_libexec}
2013-03-17 15:52:17 +00:00
You may want to add the following to your .bash_profile:
2014-03-06 05:28:31 +00:00
export JBOSS_HOME=#{opt_libexec}
2013-03-17 15:52:17 +00:00
export PATH=${PATH}:${JBOSS_HOME}/bin
2013-03-17 15:52:17 +00:00
Note: The support scripts used by JBoss Application Server 7 have
very generic names. These are likely to conflict with support scripts
used by other Java-based server software. Hence they are *NOT* linked
to bin.
EOS
end
end