homebrew-core/Formula/walkmod.rb
rpau db725c0061 walkmod 3.0.0
Closes #9955.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-02-14 12:41:10 +01:00

23 lines
656 B
Ruby

class Walkmod < Formula
desc "Java-based open source tool to apply and share code conventions"
homepage "http://www.walkmod.com"
url "https://bitbucket.org/rpau/walkmod/downloads/walkmod-3.0.0-installer.zip"
sha256 "7d83564b8b11ce02b5a0924e552a8f006524003a03749e5fe901c937cff3d544"
bottle :unneeded
depends_on :java => "1.7+"
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
libexec.install Dir["*"]
bin.install_symlink libexec+"bin/walkmod"
end
test do
system "git", "clone", "--depth", "1", "https://github.com/walkmod/walkmod-core.git"
cd "walkmod-core"
system bin/"walkmod", "chains"
end
end