10c03548d0
Closes Homebrew/homebrew#3730. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
24 lines
654 B
Ruby
24 lines
654 B
Ruby
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
|