blob: 58f40b6bf82c4ded0e4b166ed7f2459a6a2ccc89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
|