diff options
| author | Adam Vandenberg | 2012-02-12 11:16:53 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-12 20:09:02 -0800 |
| commit | b54c415e919871a41f4cb3eca43492d8f55c8235 (patch) | |
| tree | 366a6505a088aa9dfa38901bdcd03289a643cc48 /Library/Formula/s3cmd.rb | |
| parent | 7338ed6600671330755f46a61342e0da5245d988 (diff) | |
| download | homebrew-b54c415e919871a41f4cb3eca43492d8f55c8235.tar.bz2 | |
s3cmd: use install_symlink
Diffstat (limited to 'Library/Formula/s3cmd.rb')
| -rw-r--r-- | Library/Formula/s3cmd.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/s3cmd.rb b/Library/Formula/s3cmd.rb index e9b73bbf4..1ccc13d64 100644 --- a/Library/Formula/s3cmd.rb +++ b/Library/Formula/s3cmd.rb @@ -1,14 +1,13 @@ require 'formula' class S3cmd < Formula - url 'http://downloads.sourceforge.net/project/s3tools/s3cmd/1.0.1/s3cmd-1.0.1.tar.gz' homepage 'http://s3tools.org/s3cmd' + url 'http://downloads.sourceforge.net/project/s3tools/s3cmd/1.0.1/s3cmd-1.0.1.tar.gz' md5 'dc62becc03a3e6100843611ebe2707c2' def install - libexec.install Dir['s3cmd', 'S3'] + libexec.install 's3cmd', 'S3' man1.install 's3cmd.1' - bin.mkpath - ln_s libexec+'s3cmd', bin + bin.install_symlink libexec+'s3cmd' end end |
