15 lines
391 B
Ruby
15 lines
391 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class PutmailQueue < Formula
|
||
|
url 'http://downloads.sourceforge.net/project/putmail/putmail-queue/0.2/putmail-queue-0.2.tar.bz2'
|
||
|
homepage 'http://putmail.sourceforge.net/home.html'
|
||
|
md5 '8c9401e403bd6d0948e8cbcfc811f1db'
|
||
|
|
||
|
depends_on 'putmail'
|
||
|
|
||
|
def install
|
||
|
bin.install ['putmail_dequeue.py', 'putmail_enqueue.py']
|
||
|
man1.install Dir["man/man1/*.1"]
|
||
|
end
|
||
|
end
|