aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-28 21:09:42 -0800
committerAdam Vandenberg2013-01-28 21:40:30 -0800
commit4061e03c6fde84e888ce05cb26c79b79d430ea5a (patch)
tree4fe0a4436950e0072ead32dbe2f4858a559a89e8 /Library/Formula
parent1d4b82acead7f521a834656083693009a0424d5d (diff)
downloadhomebrew-4061e03c6fde84e888ce05cb26c79b79d430ea5a.tar.bz2
lrzsz: style nits
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lrzsz.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/lrzsz.rb b/Library/Formula/lrzsz.rb
index 0939acca6..40f6cf6ab 100644
--- a/Library/Formula/lrzsz.rb
+++ b/Library/Formula/lrzsz.rb
@@ -1,8 +1,8 @@
require 'formula'
class Lrzsz < Formula
- url 'http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gz'
homepage 'http://www.ohse.de/uwe/software/lrzsz.html'
+ url 'http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gz'
sha1 '451e6a1813dfb71a412c973acd1b88b9ee3f28c4'
def install
@@ -11,12 +11,11 @@ class Lrzsz < Formula
# there's a bug in lrzsz when using custom --prefix
# must install the binaries manually first
- bin.install "src/lrz"
- bin.install "src/lsz"
+ bin.install "src/lrz", "src/lsz"
system "make install"
- ln_s bin + "lrz", bin + "rz"
- ln_s bin + "lsz", bin + "sz"
+ ln_s bin/"lrz", bin/"rz"
+ ln_s bin/"lsz", bin/"sz"
end
end