aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/putmail.rb
diff options
context:
space:
mode:
authorTim Gray2011-04-26 11:32:01 -0400
committerAdam Vandenberg2011-11-20 15:28:51 -0800
commit72fa2525eb4d3fdd28ec33d4e3ba71e337a4836f (patch)
treee02e7ca27072cf4643eff6327d3872cb473ee222 /Library/Formula/putmail.rb
parent19b4bee5378b2bd9fe8b8ba8de97ac06a5069944 (diff)
downloadhomebrew-72fa2525eb4d3fdd28ec33d4e3ba71e337a4836f.tar.bz2
putmail.py 1.4
Putmail.py is a very simple and lightweight smtp client. Like msmtp but written in Python. Supports queuing with the addition of the putmail-queue brew. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/putmail.rb')
-rw-r--r--Library/Formula/putmail.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/putmail.rb b/Library/Formula/putmail.rb
new file mode 100644
index 000000000..578a126df
--- /dev/null
+++ b/Library/Formula/putmail.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Putmail < Formula
+ url 'http://downloads.sourceforge.net/project/putmail/putmail.py/1.4/putmail.py-1.4.tar.bz2'
+ homepage 'http://putmail.sourceforge.net/home.html'
+ md5 'cb512effdb98731821b09dedcbc641ed'
+
+ def install
+ # Install manually.
+ bin.install "putmail.py"
+ man1.install "man/man1/putmail.py.1"
+
+ # MacPorts does this, so why not
+ ln_s bin+"putmail.py", bin+"putmail"
+ ln_s man1+"putmail.py.1", man1+"putmail.1"
+ end
+end