345b4cbb4c
Closes Homebrew/homebrew#26677. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
26 lines
660 B
Ruby
26 lines
660 B
Ruby
require 'formula'
|
|
|
|
class WildflyAs < Formula
|
|
homepage 'http://wildfly.org/'
|
|
url 'http://download.jboss.org/wildfly/8.0.0.Final/wildfly-8.0.0.Final.tar.gz'
|
|
sha1 '594f78aa04dd35c936615563ff3777a67228ba9d'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
libexec.install Dir['*']
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
The home of WildFly Application Server 8 is:
|
|
#{opt_prefix}/libexec
|
|
You may want to add the following to your .bash_profile:
|
|
export JBOSS_HOME=#{opt_prefix}/libexec
|
|
export PATH=${PATH}:${JBOSS_HOME}/bin
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{opt_prefix}/libexec/bin/standalone.sh --version | grep #{version}"
|
|
end
|
|
|
|
end
|