5667a34f8b
The formula for Spring Roo is updated to the latest GA release 1.1.5.RELEASE. The roo executable is renamed from roo.sh to roo, as specified in the Spring Roo installation instructions (see http://www.springsource.org/spring-roo). Closes Homebrew/homebrew#8899. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
14 lines
413 B
Ruby
14 lines
413 B
Ruby
require 'formula'
|
|
|
|
class SpringRoo < Formula
|
|
url 'http://s3.amazonaws.com/dist.springframework.org/release/ROO/spring-roo-1.1.5.RELEASE.zip'
|
|
version '1.1.5'
|
|
homepage 'http://www.springsource.org/spring-roo'
|
|
md5 '926c08e39ab8cefb935027ccae6d2285'
|
|
|
|
def install
|
|
rm Dir["bin/*.bat"]
|
|
File.rename "bin/roo.sh", "bin/roo"
|
|
prefix.install %w[annotations bin bundle conf docs legal samples]
|
|
end
|
|
end
|