aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Brockman2014-05-01 21:30:34 +0200
committerAdam Vandenberg2014-05-02 19:49:40 -0700
commite64477a73e8ccc118b4d42c581f16bc9d97d6e2c (patch)
treeceb09fa443453a9ebb9739d04fd2c78e5d01ed8d
parentb0305852ec287fd998ea8a0bf95e6c59c99ac00c (diff)
downloadhomebrew-e64477a73e8ccc118b4d42c581f16bc9d97d6e2c.tar.bz2
mailutils 2.2
Closes #28893. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/mailutils.rb23
1 files changed, 23 insertions, 0 deletions
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