27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
class StyleCheck < Formula
|
|
desc "Parses latex-formatted text in search of forbidden phrases"
|
|
homepage "https://www.cs.umd.edu/~nspring/software/style-check-readme.html"
|
|
url "https://www.cs.umd.edu/~nspring/software/style-check-0.14.tar.gz"
|
|
sha256 "2ae806fcce9e3b80162c64634422dc32d7f0e6f8a81ba5bc7879358744b4e119"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "8ad833cef9ca35a1ae95569f93c8936a82c6d6039e3bd4560e2b1dc93fd029d8" => :el_capitan
|
|
sha256 "08759f3a407af4dab0310f4a02ee18f15f2104011d702a300adbe9d33bcde0f5" => :yosemite
|
|
sha256 "afeff378c5e3aac20d3fa3756d7dbd85242f6d4d846e9cd670f3119069e83a52" => :mavericks
|
|
end
|
|
|
|
def install
|
|
inreplace "style-check.rb", "/etc/style-check.d/", etc/"style-check.d/"
|
|
system "make", "PREFIX=#{prefix}",
|
|
"SYSCONFDIR=#{etc}/style-check.d",
|
|
"install"
|
|
end
|
|
|
|
test do
|
|
(testpath/".style-censor").write "homebrew % capitalize Homebrew\n"
|
|
(testpath/"paper.tex").write "Today I worked on homebrew\n"
|
|
|
|
system "#{bin}/style-check.rb", "-v", "paper.tex"
|
|
end
|
|
end
|