homebrew-core/Formula/chktex.rb
Aaron Ecay 3ea6b891cf New formula: chktex
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Removed 1-second delay in configure
2010-06-08 16:32:37 -07:00

18 lines
472 B
Ruby

require 'formula'
class Chktex <Formula
url 'http://baruch.ev-en.org/proj/chktex/chktex-1.6.4.tar.gz'
homepage 'http://baruch.ev-en.org/proj/chktex/'
md5 'e1d1f70d37e97734a69c94682a2038a0'
def install
# Seriously, don't pause and show ASCII art
inreplace "configure", "sleep 1", ""
system "./configure", "--prefix=#{prefix}"
system "make install"
end
def caveats
"chktex requires a version of TeX, such as TeX Live or MacTeX."
end
end