aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Turnquist2013-08-05 12:57:44 -0500
committerAdam Vandenberg2013-08-05 13:50:14 -0700
commit91693369f19f3dcbf0d6ebb30746d62dc9c2f596 (patch)
tree62aee20f0ac1450b33e553b152b3dd596a65dd45
parent3d9e37924a914b86688135a72d9891f9e5081aee (diff)
downloadhomebrew-91693369f19f3dcbf0d6ebb30746d62dc9c2f596.tar.bz2
Spring Boot CLI 0.5.0.M1
Closes #21676. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/spring-boot-cli.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/spring-boot-cli.rb b/Library/Formula/spring-boot-cli.rb
new file mode 100644
index 000000000..1724c1af7
--- /dev/null
+++ b/Library/Formula/spring-boot-cli.rb
@@ -0,0 +1,13 @@
+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