fetchmail 6.4.1 (with openssl@1.1)

Closes #44847.

Signed-off-by: Viktor Szakats <commit@vszakats.net>
This commit is contained in:
Viktor Szakats 2019-10-03 10:25:48 +00:00
parent 8588fd9434
commit eadc282291

View file

@ -1,8 +1,8 @@
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"
url "https://downloads.sourceforge.net/project/fetchmail/branch_6.4/fetchmail-6.4.1.tar.xz"
sha256 "3f33f11dd08c3e8cc3e9d18eec686b1626d4818f4d5a72791507bbc4dce6a9a0"
bottle do
cellar :any
@ -12,12 +12,12 @@ class Fetchmail < Formula
sha256 "bbb488da8deef2cf53d35034a9e9b058070dc671645ca1fb86698110050c13f7" => :sierra
end
depends_on "openssl" # no OpenSSL 1.1 support
depends_on "openssl@1.1"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-ssl=#{Formula["openssl"].opt_prefix}"
"--with-ssl=#{Formula["openssl@1.1"].opt_prefix}"
system "make", "install"
end