2becf01795
Closes Homebrew/homebrew#25048. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
20 lines
500 B
Ruby
20 lines
500 B
Ruby
require 'formula'
|
|
|
|
class Grails < Formula
|
|
homepage 'http://grails.org'
|
|
url 'http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/grails-2.3.4.zip'
|
|
sha1 '13c39936f1b820ebb13e03fd56cc617b0c68eaee'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat", "bin/cygrails", "*.bat"]
|
|
prefix.install_metafiles
|
|
libexec.install Dir['*']
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
The GRAILS_HOME directory is:
|
|
#{opt_prefix}/libexec
|
|
EOS
|
|
end
|
|
end
|