Created
August 5, 2012 03:40
-
-
Save sulrich/3261452 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Fetchmail < Formula | |
# note that the following url is actually a javascript redirection. | |
# download the associated file and place it into /Library/Caches/Homebrew | |
homepage 'http://www.fetchmail.info/' | |
url 'http://prdownload.berlios.de/fetchmail/fetchmail-6.3.21.tar.bz2' | |
# md5 '548f152df27d32b632afa4f1a8a6cd1a' | |
md5 '0ad8eac47e85bd0ae63870daa09992af' | |
def install | |
# i added ssl support since i need it. builds with a few warnings | |
# against the current openssl libs but works fine. | |
system "./configure", "--disable-dependency-tracking", "--with-ssl", "--prefix=#{prefix}" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment