blob: 3bcdeefd43c103822093b0fc7cfb29c96dd46aed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
system "./configure", "LIBS=-liconv",
"--disable-debug",
"--prefix=#{prefix}"
system "make install"
end
end
|