blob: a6d3b5eae13eef864b59f8491452b209d06c9730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Getmail < Formula
homepage 'http://pyropus.ca/software/getmail/'
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'
def install
libexec.install %w( getmail getmail_fetch getmail_maildir getmail_mbox )
bin.install_symlink Dir["#{libexec}/*"]
libexec.install 'getmailcore'
man1.install Dir['docs/*.1']
end
end
|