homebrew-core/Formula/spring-roo.rb
Alinoor Rahman 7fa5ebc9cf spring-roo 1.3.2
Closes Homebrew/homebrew#45795.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-11-08 18:22:12 +00:00

16 lines
550 B
Ruby

class SpringRoo < Formula
desc "Rapid application development tool for Java developers"
homepage "http://www.springsource.org/spring-roo"
url "https://s3.amazonaws.com/spring-roo-repository.springsource.org/release/ROO/spring-roo-1.3.2.RELEASE.zip"
version "1.3.2"
sha256 "535fb618fe2b9534f0a8bf7003750bb3835ec93ef8a48b05a3511e2adc8ffe9c"
bottle :unneeded
def install
rm Dir["bin/*.bat"]
libexec.install Dir["*"]
mv "#{libexec}/bin/roo.sh", "#{libexec}/bin/roo"
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end