diff options
| author | Daniel Brockman | 2014-05-01 21:30:34 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2014-05-02 19:49:40 -0700 | 
| commit | e64477a73e8ccc118b4d42c581f16bc9d97d6e2c (patch) | |
| tree | ceb09fa443453a9ebb9739d04fd2c78e5d01ed8d /Library/Formula/mailutils.rb | |
| parent | b0305852ec287fd998ea8a0bf95e6c59c99ac00c (diff) | |
| download | homebrew-e64477a73e8ccc118b4d42c581f16bc9d97d6e2c.tar.bz2 | |
mailutils 2.2
Closes #28893.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/mailutils.rb')
| -rw-r--r-- | Library/Formula/mailutils.rb | 23 | 
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  | 
