diff options
| author | Sebastian Otaegui | 2014-11-17 13:21:15 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-12-07 01:12:32 -0500 |
| commit | 532dce339f45a628fc987f3b8dfe4f51e5893de5 (patch) | |
| tree | de0b848ffd630115f67de52f5175c012c3cdd2fa /Library | |
| parent | 8114754742d241cb18c0211f1b94421b5c11ebc5 (diff) | |
| download | homebrew-532dce339f45a628fc987f3b8dfe4f51e5893de5.tar.bz2 | |
New formula: jooby-bootstrap
Closes #34267.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jooby-bootstrap.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/jooby-bootstrap.rb b/Library/Formula/jooby-bootstrap.rb new file mode 100644 index 000000000..32ccd045b --- /dev/null +++ b/Library/Formula/jooby-bootstrap.rb @@ -0,0 +1,18 @@ +require "formula" + +class JoobyBootstrap < Formula + homepage "https://github.com/jooby-project/jooby-bootstrap" + url "https://github.com/jooby-project/jooby-bootstrap/archive/0.2.2.tar.gz" + sha1 "54802aa2a7bad6a07f25fc4d1dc35767c3525deb" + + depends_on :java => "1.8" + depends_on "maven" + + def install + bin.install "jooby" + end + + test do + system "#{bin}/jooby", "version" + end +end |
