blob: 7e54e5c3228d461e95df49c2cfd110bd51005724 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Checkstyle < Formula
homepage 'http://checkstyle.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/checkstyle/checkstyle/5.6/checkstyle-5.6-bin.tar.gz'
sha1 'cf08ac75aedddcd3a8d1f27fcbbb6095b0d1d5e3'
def install
libexec.install 'checkstyle-5.6-all.jar', 'sun_checks.xml'
bin.write_jar_script libexec/'checkstyle-5.6-all.jar', 'checkstyle'
end
test do
# Note this test "fails" because the audit has issues
# TODO - pipe through cat to ingore error code
(testpath/"Test.java").write <<-EOS.undent
public class Test{ }
EOS
system "#{bin}/checkstyle", "-c", "#{libexec}/sun_checks.xml", "-r", "Test.java"
end
end
|