2012-04-30 09:37:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Checkstyle < Formula
|
|
|
|
homepage 'http://checkstyle.sourceforge.net/'
|
2013-06-20 23:08:35 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/checkstyle/checkstyle/5.6/checkstyle-5.6-bin.tar.gz'
|
2013-04-24 04:04:28 +00:00
|
|
|
sha1 'cf08ac75aedddcd3a8d1f27fcbbb6095b0d1d5e3'
|
2012-04-30 09:37:34 +00:00
|
|
|
|
|
|
|
def install
|
2013-08-12 23:47:38 +00:00
|
|
|
libexec.install "checkstyle-#{version}-all.jar", "sun_checks.xml"
|
|
|
|
bin.write_jar_script libexec/"checkstyle-#{version}-all.jar", "checkstyle"
|
2012-04-30 09:37:34 +00:00
|
|
|
end
|
|
|
|
|
2013-02-02 05:12:31 +00:00
|
|
|
test do
|
2012-08-07 18:20:52 +00:00
|
|
|
# Note this test "fails" because the audit has issues
|
|
|
|
# TODO - pipe through cat to ingore error code
|
2013-02-02 05:12:31 +00:00
|
|
|
(testpath/"Test.java").write <<-EOS.undent
|
2012-05-02 02:43:45 +00:00
|
|
|
public class Test{ }
|
2013-02-02 05:12:31 +00:00
|
|
|
EOS
|
|
|
|
system "#{bin}/checkstyle", "-c", "#{libexec}/sun_checks.xml", "-r", "Test.java"
|
2012-04-30 09:37:34 +00:00
|
|
|
end
|
|
|
|
end
|