From e64477a73e8ccc118b4d42c581f16bc9d97d6e2c Mon Sep 17 00:00:00 2001 From: Daniel Brockman Date: Thu, 1 May 2014 21:30:34 +0200 Subject: mailutils 2.2 Closes #28893. Signed-off-by: Adam Vandenberg --- Library/Formula/mailutils.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Library/Formula/mailutils.rb diff --git a/Library/Formula/mailutils.rb b/Library/Formula/mailutils.rb new file mode 100644 index 000000000..57508ed71 --- /dev/null +++ b/Library/Formula/mailutils.rb @@ -0,0 +1,23 @@ +require "formula" + +class Mailutils < Formula + homepage "http://mailutils.org/" + url "http://ftpmirror.gnu.org/mailutils/mailutils-2.2.tar.gz" + sha1 "166a47c5eef6192542b568e031719c3e8d01d1f5" + + depends_on "gnutls" + depends_on "gsasl" + + def install + # Python breaks the build (2014-05-01) + # Don't want bin/mu-mh/ directory + system "./configure", "--without-python", + "--disable-mh", + "--prefix=#{prefix}" + system "make", "install" + end + + test do + system "#{bin}/movemail", "--version" + end +end -- cgit v1.2.3