class Mtools < Formula desc "Tools for manipulating MSDOS files" homepage "https://www.gnu.org/software/mtools/" url "https://ftp.gnu.org/gnu/mtools/mtools-4.0.18.tar.gz" mirror "https://ftpmirror.gnu.org/mtools/mtools-4.0.18.tar.gz" sha256 "30d408d039b4cedcd04fbf824c89b0ff85dcbb6f71f13d2d8d65abb3f58cacc3" bottle do rebuild 1 sha256 "28dcb27b6096706c6ca6fc1661af20485a3211cb248e0c3ec258d70e89e505f5" => :mojave sha256 "6f51a942eb679aabcad3e9a14ee2afe687421d7837aba20f4f69ca3a296acedb" => :high_sierra sha256 "9038497db92b296b077c375fb23c56faccd1879877c13088cd5e4c9f17ceaeab" => :sierra sha256 "29b49f7ac62634261b8e9de9ecd1459d0a9d298a525dbe09091aa8e015b72e7a" => :el_capitan end depends_on :x11 => :optional conflicts_with "multimarkdown", :because => "both install `mmd` binaries" def install # Prevents errors such as "mainloop.c:89:15: error: expected ')'" # Upstream issue https://lists.gnu.org/archive/html/info-mtools/2014-02/msg00000.html if ENV.cc == "clang" inreplace "sysincludes.h", "# define UNUSED(x) x __attribute__ ((unused));x", "# define UNUSED(x) x" end args = %W[ LIBS=-liconv --disable-debug --prefix=#{prefix} --sysconfdir=#{etc} ] if build.with? "x11" args << "--with-x" else args << "--without-x" end system "./configure", *args system "make" ENV.deparallelize system "make", "install" end test do assert_match /#{version}/, shell_output("#{bin}/mtools --version") end end