homebrew-core/Formula/tailor.rb

22 lines
587 B
Ruby

class Tailor < Formula
desc "Cross-platform static analyzer and linter for Swift"
homepage "https://tailor.sh"
url "https://github.com/sleekbyte/tailor/releases/download/v0.11.0/tailor-0.11.0.tar"
sha256 "1e6ceda8bc36c2a4386ec1bcd363e15aaf30be1d36c67b356dc2f711e5a47d6c"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/tailor"
man1.install libexec/"tailor.1"
end
test do
(testpath/"Test.swift").write "import Foundation\n"
system "#{bin}/tailor", testpath/"Test.swift"
end
end