2644e76d74
Closes Homebrew/homebrew#27216.
29 lines
678 B
Ruby
29 lines
678 B
Ruby
require 'formula'
|
|
|
|
class Mtools < Formula
|
|
homepage 'http://www.gnu.org/software/mtools/'
|
|
url 'http://ftpmirror.gnu.org/mtools/mtools-4.0.17.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/mtools/mtools-4.0.17.tar.gz'
|
|
sha1 'eebfab51148c4ab20a6aca3cea8057da5a11bdc8'
|
|
|
|
conflicts_with 'multimarkdown', :because => 'both install `mmd` binaries'
|
|
|
|
depends_on :x11 => :optional
|
|
|
|
def install
|
|
args = ["LIBS=-liconv",
|
|
"--disable-debug",
|
|
"--prefix=#{prefix}"]
|
|
|
|
if build.with? 'x11'
|
|
args << "--with-x"
|
|
else
|
|
args << "--without-x"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
ENV.j1
|
|
system "make", "install"
|
|
end
|
|
end
|