2010-04-10 19:13:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Getmail < Formula
|
2010-04-10 19:13:10 +00:00
|
|
|
homepage 'http://pyropus.ca/software/getmail/'
|
2013-09-17 17:11:13 +00:00
|
|
|
url 'http://pyropus.ca/software/getmail/old-versions/getmail-4.43.0.tar.gz'
|
|
|
|
mirror 'http://fossies.org/linux/misc/getmail-4.43.0.tar.gz'
|
|
|
|
sha1 '835ede882a204cf956229c18ea8073a68af7ba82'
|
2010-04-10 19:13:10 +00:00
|
|
|
|
|
|
|
def install
|
2013-08-15 16:37:53 +00:00
|
|
|
libexec.install %w( getmail getmail_fetch getmail_maildir getmail_mbox )
|
|
|
|
bin.install_symlink Dir["#{libexec}/*"]
|
|
|
|
libexec.install 'getmailcore'
|
2011-07-07 02:21:16 +00:00
|
|
|
man1.install Dir['docs/*.1']
|
2010-04-10 19:13:10 +00:00
|
|
|
end
|
|
|
|
end
|