homebrew-core/Formula/scalastyle.rb
Turadg Aleahmad 33990a0137 scalastyle 0.5.0 (new formula)
Scalastyle is a style checker for Scala. They have a CLI interface and there
have been requests to make it available as a Homebrew formula:
  https://github.com/scalastyle/scalastyle-batch/issues/1

Here is such a formula. :)

Closes Homebrew/homebrew#32652.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-07 04:37:58 +01:00

36 lines
1.1 KiB
Ruby

require "formula"
class Scalastyle < Formula
homepage "http://www.scalastyle.org/command-line.html"
url "https://oss.sonatype.org/content/repositories/releases/org/scalastyle/scalastyle-batch_2.10/0.5.0/scalastyle-batch_2.10-0.5.0-distribution.zip"
version "0.5.0"
sha1 "bf009e0c4d48e5effce5113f5feb3da626ca1248"
resource "default_config" do
url "https://raw.githubusercontent.com/scalastyle/scalastyle/e41e5df2cf4b616d06d1f5b8c383ec084fc32012/lib/scalastyle_config.xml"
sha1 "993c4d665ae75930c262fcd8a13eef0e9604920f"
end
def install
(libexec/"lib").install Dir["lib/*.jar"]
libexec.install "scalastyle-batch_2.10.jar"
etc.install resource("default_config")
(bin/"scalastyle").write <<-EOS.undent
#!/bin/sh
java -jar "#{libexec}/scalastyle-batch_2.10.jar" --config "#{etc}/scalastyle_config.xml" "$@"
EOS
end
def caveats
<<-EOS.undent
A default configuration file is used from "#{etc}/scalastyle_config.xml"
To override, pass a "--config your_config.xml" argument on the command line.
EOS
end
test do
system bin/"scalastyle", "--verbose"
end
end