homebrew-core/Formula/fetchmail.rb
Jack Nagel ab3639671a Import fetchmail from homebrew-dupes
This is not available on OS X since 10.8.

See Homebrew/homebrew-dupes#434.
2015-06-24 19:52:19 -04:00

17 lines
536 B
Ruby

class Fetchmail < Formula
desc "fetch mail from a POP, IMAP, ETRN, or ODMR-capable server"
homepage "http://www.fetchmail.info/"
url "https://downloads.sourceforge.net/project/fetchmail/branch_6.3/fetchmail-6.3.26.tar.xz"
sha256 "79b4c54cdbaf02c1a9a691d9948fcb1a77a1591a813e904283a8b614b757e850"
depends_on "openssl"
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-ssl"
system "make", "install"
end
test do
system "#{bin}/fetchmail", "--version"
end
end