323f02c285
Closes Homebrew/homebrew#21676. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
454 B
Ruby
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
|