homebrew-core/Formula/checkstyle.rb

28 lines
734 B
Ruby
Raw Normal View History

require 'formula'
class Checkstyle < Formula
homepage 'http://checkstyle.sourceforge.net/'
url 'http://sourceforge.net/projects/checkstyle/files/checkstyle/5.5/checkstyle-5.5-bin.tar.gz'
sha1 '757f89f0bb6148718904577d230a9b4f8221b03c'
def install
# wrapper script
(bin/'checkstyle').write <<-EOS.undent
#! /usr/bin/env bash -e
java -jar "#{libexec}/checkstyle-5.5-all.jar" "$@"
EOS
libexec.install 'checkstyle-5.5-all.jar', 'sun_checks.xml'
end
def test
mktemp do
2012-05-02 02:43:45 +00:00
# create test file
(Pathname.pwd/"Test.java").write <<-EOS.undent
2012-05-02 02:43:45 +00:00
public class Test{ }
EOS
system "#{bin}/checkstyle", "-c", "#{libexec}/sun_checks.xml", "-r", "Test.java"
end
end
end