2010-02-10 15:24:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Languagetool < Formula
|
2010-02-10 15:24:38 +00:00
|
|
|
homepage 'http://www.languagetool.org/'
|
2012-02-11 23:43:10 +00:00
|
|
|
url 'http://www.languagetool.org/download/LanguageTool-1.3.1.oxt'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'eed879e201f13dd98d585e945b21cd7ba3eacd20'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-02-10 15:24:38 +00:00
|
|
|
def install
|
2012-02-11 23:43:10 +00:00
|
|
|
(bin+"languagetool").write <<-EOS.undent
|
|
|
|
#!/bin/bash
|
|
|
|
java -jar "#{libexec}/LanguageTool.jar" "$@"
|
|
|
|
EOS
|
|
|
|
|
2010-02-10 17:13:46 +00:00
|
|
|
libexec.install Dir["*"]
|
2010-02-10 15:24:38 +00:00
|
|
|
end
|
|
|
|
end
|