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/'
|
2012-02-29 00:46:40 +00:00
|
|
|
url 'https://github.com/downloads/kobo/groovyserv/groovyserv-0.10-src.zip'
|
2012-08-04 15:11:23 +00:00
|
|
|
sha1 'b8912ce7871458be6452876ab0215b5c89e82ad0'
|
2012-04-19 02:37:43 +00:00
|
|
|
|
|
|
|
head 'https://github.com/kobo/groovyserv.git'
|
2010-12-22 23:39:28 +00:00
|
|
|
|
|
|
|
depends_on 'groovy'
|
|
|
|
|
|
|
|
def install
|
2012-02-29 00:46:40 +00:00
|
|
|
ENV['CC'] = ENV['CFLAGS'] = nil # to workaround
|
|
|
|
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
|