Skip to content

Instantly share code, notes, and snippets.

@sulrich
Created August 5, 2012 03:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sulrich/3261452 to your computer and use it in GitHub Desktop.
Save sulrich/3261452 to your computer and use it in GitHub Desktop.
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