homebrew-core/Formula/getmail.rb
Brett Koonce d8d57207b0 getmail 4.36.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-03 14:04:51 -08:00

15 lines
469 B
Ruby

require 'formula'
class Getmail < Formula
homepage 'http://pyropus.ca/software/getmail/'
url 'http://pyropus.ca/software/getmail/old-versions/getmail-4.36.0.tar.gz'
sha1 '9d3983b3d57f02968200c2908ef9efa69ee9f078'
def install
scripts = %w[ getmail getmail_fetch getmail_maildir getmail_mbox ]
libexec.install 'getmailcore'
libexec_scripts = libexec.install scripts
bin.install_symlink libexec_scripts
man1.install Dir['docs/*.1']
end
end