2010-12-22 23:39:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Groovyserv < Formula
|
2010-12-22 23:39:28 +00:00
|
|
|
homepage 'http://kobo.github.com/groovyserv/'
|
2013-02-02 16:38:53 +00:00
|
|
|
url 'https://bitbucket.org/kobo/groovyserv-mirror/downloads/groovyserv-0.11-src.zip'
|
|
|
|
sha1 'a9a558c9793fbaaf32f6a4e267d5ad16d0381292'
|
2012-04-19 02:37:43 +00:00
|
|
|
|
|
|
|
head 'https://github.com/kobo/groovyserv.git'
|
2010-12-22 23:39:28 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-29 00:46:40 +00:00
|
|
|
system './gradlew clean executables'
|
2011-03-22 00:52:13 +00:00
|
|
|
|
2012-02-12 22:12:27 +00:00
|
|
|
# Install executables in libexec to avoid conflicts
|
|
|
|
libexec.install Dir["build/executables/{bin,lib}"]
|
|
|
|
|
2011-03-22 00:52:13 +00:00
|
|
|
# Remove windows files
|
2010-12-22 23:39:28 +00:00
|
|
|
rm_f Dir["#{libexec}/bin/*.bat"]
|
2011-03-22 00:52:13 +00:00
|
|
|
|
|
|
|
# Symlink binaries
|
2012-02-12 22:12:27 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
2010-12-22 23:39:28 +00:00
|
|
|
end
|
|
|
|
end
|