diff options
| author | Yasuharu Nakano | 2014-11-05 00:36:18 +0900 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-05 11:25:45 +0000 |
| commit | 870b313ee04789da5271370d5e6ffba6759fd42f (patch) | |
| tree | 00bad7834e1f8ab6553069f311180f636198b6f0 /Library/Formula | |
| parent | f10255dd2969e97f58c62a5790ce0e4d82aaf18f (diff) | |
| download | homebrew-870b313ee04789da5271370d5e6ffba6759fd42f.tar.bz2 | |
groovyserv 1.0.0
Closes #33929.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/groovyserv.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Formula/groovyserv.rb b/Library/Formula/groovyserv.rb index adf72dee4..ea3ae25fa 100644 --- a/Library/Formula/groovyserv.rb +++ b/Library/Formula/groovyserv.rb @@ -2,22 +2,23 @@ require 'formula' class Groovyserv < Formula homepage 'http://kobo.github.io/groovyserv/' - url 'https://bitbucket.org/kobo/groovyserv-mirror/downloads/groovyserv-0.13-src.zip' - sha1 '68e4d80b8309b71849d46590d9122a5fee2d36c3' + url 'https://bitbucket.org/kobo/groovyserv-mirror/downloads/groovyserv-1.0.0-src.zip' + sha1 '46b946dee3e40457e667498b235bd8e1567ed9ed' head 'https://github.com/kobo/groovyserv.git' + depends_on "go" => :build # This fix is upstream and can be removed in the next released version. patch do - url "https://github.com/kobo/groovyserv/commit/53b77ab2b4a7bcf6e232bc54f4e50e8b78d3006a.diff" - sha1 "59bec0eb24c582670781af277cc64c6fe13b11db" + url "https://github.com/kobo/groovyserv/commit/4ea88fbfe940b50801be5e0b0bc84cd0ce627530.diff" + sha1 "2fe73bbed1778075a84dec43d462f69154cdb602" end def install system './gradlew clean executables' # Install executables in libexec to avoid conflicts - libexec.install Dir["build/executables/native/{bin,lib}"] + libexec.install Dir["build/executables/{bin,lib}"] # Remove windows files rm_f Dir["#{libexec}/bin/*.bat"] |
