New formula: LanguageTool

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Lars Eggert 2010-02-10 17:24:38 +02:00 committed by Adam Vandenberg
parent 42134c47b0
commit 7ff8bfa41d
1 changed files with 19 additions and 0 deletions

19
Formula/languagetool.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
EXEC=<<EOS
#!/bin/bash
java -jar xxx/LanguageTool.jar $*
EOS
class Languagetool <Formula
url 'http://www.languagetool.org/download/LanguageTool-1.0.0.oxt'
homepage 'http://www.languagetool.org/'
md5 '979b1a1f2ce3a9100d7aa7b1ef245734'
def install
File.open("languagetool", 'w') {|f| f.write EXEC}
inreplace "languagetool", "xxx", "#{share}"
bin.install "languagetool"
Dir["*"].each {|f| share.install f}
end
end