aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/groovyserv.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/groovyserv.rb b/Library/Formula/groovyserv.rb
new file mode 100644
index 000000000..9d80d1d05
--- /dev/null
+++ b/Library/Formula/groovyserv.rb
@@ -0,0 +1,24 @@
+require 'formula'
+
+class Groovyserv <Formula
+ url 'https://github.com/downloads/kobo/groovyserv/groovyserv-0.5-src.zip'
+ md5 'aecbf09143039305d4e8cc6a843800fb'
+ head 'http://github.com/kobo/groovyserv.git', :using => :git
+ homepage 'http://kobo.github.com/groovyserv/'
+
+ depends_on 'groovy'
+
+ def install
+ system 'mvn package -Dmaven.test.skip=true'
+ Dir::chdir Dir['target/groovyserv-*/groovyserv-*/'].first do
+ prefix.install %w{LICENSE README}
+ libexec.install %w{bin lib}
+ end
+
+ rm_f Dir["#{libexec}/bin/*.bat"]
+ bin.mkpath
+ Dir["#{libexec}/bin/*"].each do |f|
+ ln_s f, bin + File.basename(f)
+ end
+ end
+end