blob: 22400c50e275ee4f55666f23c5f8b14339d9c9d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Chktex < Formula
homepage 'http://www.nongnu.org/chktex/'
url 'http://download.savannah.gnu.org/releases/chktex/chktex-1.7.1.tar.gz'
sha1 'ed94b96ed8ce65fb1cef1b5fc019045c5b2dd8a8'
depends_on :tex
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|