2011-12-29 15:18:58 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mtools < Formula
|
2013-01-29 04:51:46 +00:00
|
|
|
homepage 'http://www.gnu.org/software/mtools/'
|
2011-12-29 15:18:58 +00:00
|
|
|
url 'ftp://ftpmirror.gnu.org/mtools/mtools-4.0.17.tar.gz'
|
|
|
|
mirror 'ftp://ftp.gnu.org/gnu/mtools/mtools-4.0.17.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'eebfab51148c4ab20a6aca3cea8057da5a11bdc8'
|
2011-12-29 15:18:58 +00:00
|
|
|
|
2013-02-12 15:11:30 +00:00
|
|
|
depends_on :x11
|
|
|
|
|
2011-12-29 15:18:58 +00:00
|
|
|
def install
|
2013-01-29 04:51:46 +00:00
|
|
|
system "./configure", "LIBS=-liconv",
|
|
|
|
"--disable-debug",
|
|
|
|
"--prefix=#{prefix}"
|
2011-12-29 15:18:58 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|