blob: 48b74d258040c5b13b54abdf502f90e7f355ea50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require "formula"
class LcdfTypetools < Formula
homepage "http://www.lcdf.org/type/"
url "http://www.lcdf.org/type/lcdf-typetools-2.104.tar.gz"
sha256 "d7985458ead0850cb9549ff1d619ffc18da5d7be892be5e1fce6048d510f0fff"
conflicts_with "open-mpi", :because => "both install same set of binaries."
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--without-kpathsea"
system "make install"
end
end
|