blob: 6e343d092af4bc176601655823123aff730d07ee (
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
26
27
28
 | require 'formula'
class JbossAs < Formula
  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'
  sha1 'fcec1002dce22d3281cc08d18d0ce72006868b6f'
  def install
    rm_f Dir["bin/*.bat"]
    libexec.install Dir['*']
  end
  def caveats; <<-EOS.undent
    The home of JBoss Application Server 7 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
    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
 |