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/'
|
2012-04-22 22:47:14 +00:00
|
|
|
url 'http://pyropus.ca/software/getmail/old-versions/getmail-4.26.0.tar.gz'
|
|
|
|
md5 'a45622b355b649071a337c661533453a'
|
2010-04-10 19:13:10 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-12 19:45:41 +00:00
|
|
|
scripts = %w[ getmail getmail_fetch getmail_maildir getmail_mbox ]
|
2012-02-13 06:54:53 +00:00
|
|
|
libexec.install 'getmailcore'
|
|
|
|
libexec_scripts = libexec.install scripts
|
2012-02-18 07:07:16 +00:00
|
|
|
bin.install_symlink libexec_scripts
|
2011-07-07 02:21:16 +00:00
|
|
|
man1.install Dir['docs/*.1']
|
2010-04-10 19:13:10 +00:00
|
|
|
end
|
|
|
|
end
|