homebrew-core/Formula/spring-boot-cli.rb
Greg Turnquist 323f02c285 Spring Boot CLI 0.5.0.M1
Closes Homebrew/homebrew#21676.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-05 13:50:14 -07:00

13 lines
454 B
Ruby

require 'formula'
class SpringBootCli < Formula
homepage 'https://github.com/SpringSource/spring-boot'
url 'https://repo.springsource.org/milestone/org/springframework/boot/spring-boot-cli/0.5.0.M1/spring-boot-cli-0.5.0.M1.jar'
version '0.5.0.M1'
sha1 'd620af87d6a253a4577118c018c320b8f299a399'
def install
libexec.install 'spring-boot-cli-0.5.0.M1.jar'
bin.write_jar_script libexec/'spring-boot-cli-0.5.0.M1.jar', 'spring'
end
end