2010-03-01 08:54:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Chktex < Formula
|
2010-03-01 08:54:28 +00:00
|
|
|
url 'http://baruch.ev-en.org/proj/chktex/chktex-1.6.4.tar.gz'
|
|
|
|
homepage 'http://baruch.ev-en.org/proj/chktex/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'b42b6a69e17373760c9653cce0add6ffc741312b'
|
2010-03-01 08:54:28 +00:00
|
|
|
|
|
|
|
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
|