blob: a5a171b5110d193a8970ae328dd9990833557841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class WildflyAs < Formula
homepage 'http://wildfly.org/'
url 'http://download.jboss.org/wildfly/8.1.0.Final/wildfly-8.1.0.Final.tar.gz'
sha1 '220461e3c4eab157875a550f1222cd45a814ed90'
def install
rm_f Dir["bin/*.bat"]
libexec.install Dir['*']
end
def caveats; <<-EOS.undent
The home of WildFly Application Server 8 is:
#{opt_libexec}
You may want to add the following to your .bash_profile:
export JBOSS_HOME=#{opt_libexec}
export PATH=${PATH}:${JBOSS_HOME}/bin
EOS
end
test do
system "#{opt_libexec}/bin/standalone.sh --version | grep #{version}"
end
end
|