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-01-03 21:59:15 +00:00
|
|
|
url 'http://pyropus.ca/software/getmail/old-versions/getmail-4.36.0.tar.gz'
|
|
|
|
sha1 '9d3983b3d57f02968200c2908ef9efa69ee9f078'
|
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
|