a2c28b6755
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
351 B
Ruby
14 lines
351 B
Ruby
require 'formula'
|
|
|
|
class S3cmd <Formula
|
|
url 'http://downloads.sourceforge.net/project/s3tools/s3cmd/1.0.0-rc1/s3cmd-1.0.0-rc1.tar.gz'
|
|
homepage 'http://s3tools.org/s3cmd'
|
|
md5 '05797719da0d57712a3137c966225a9d'
|
|
|
|
def install
|
|
libexec.install Dir['s3cmd', 'S3']
|
|
man1.install 's3cmd.1'
|
|
bin.mkpath
|
|
ln_s libexec+'s3cmd', bin
|
|
end
|
|
end
|