homebrew-core/Formula/alpine.rb
Andrew Carter 6351989889 alpine: update homepage and url
Alpine has move sites (see http://mailman13.u.washington.edu/pipermail/alpine-info/2017-May/007432.html).

This PR updates the references for the homepage and the download URL to reflect the enw location.

Closes #14238.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2017-06-13 18:22:17 -07:00

27 lines
930 B
Ruby

class Alpine < Formula
desc "News and email agent"
homepage "http://alpine.freeiz.com/alpine/"
url "http://alpine.freeiz.com/alpine/release/src/alpine-2.21.tar.xz"
sha256 "6030b6881b8168546756ab3a5e43628d8d564539b0476578e287775573a77438"
bottle do
sha256 "54f70a9e4c99187db5c75e0aa0dad06726de997824e306ba625e95466bad8b27" => :sierra
sha256 "ac340d52fc2055c7e78622809750274fa9957bb1f3d7a635a29f46416a312d85" => :el_capitan
sha256 "551758443501811d21f90d3fc4f29a0787cca2409e9413138c9b8fac96395da0" => :yosemite
end
depends_on "openssl"
def install
ENV.deparallelize
system "./configure", "--disable-debug",
"--with-ssl-dir=#{Formula["openssl"].opt_prefix}",
"--with-ssl-certs-dir=#{etc}/openssl",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/alpine", "-supported"
end
end