aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-03-24 19:44:21 -0500
committerJack Nagel2014-03-24 19:44:21 -0500
commit6f37f084dc5653bce5e8ba60e5d5d02d5326c35d (patch)
treebf8902dbfa0ba1ba8d22a82e2253ee24525516d5 /Library/Formula
parent76b11f6af1f0c925a2c49f3918173c5a5f155901 (diff)
downloadhomebrew-6f37f084dc5653bce5e8ba60e5d5d02d5326c35d.tar.bz2
putmail: use install_symlink
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/putmail.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/Library/Formula/putmail.rb b/Library/Formula/putmail.rb
index 3386818dc..8bf44dcfc 100644
--- a/Library/Formula/putmail.rb
+++ b/Library/Formula/putmail.rb
@@ -6,12 +6,9 @@ class Putmail < Formula
sha1 '7903fd32a14192adb72560b99c01e6563bc9dd38'
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"
+ bin.install_symlink "putmail.py" => "putmail"
+ man1.install_symlink "putmail.py.1" => "putmail.1"
end
end