homebrew-core/Formula/s3cmd.rb

14 lines
334 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class S3cmd < Formula
homepage 'http://s3tools.org/s3cmd'
2012-02-12 19:16:53 +00:00
url 'http://downloads.sourceforge.net/project/s3tools/s3cmd/1.0.1/s3cmd-1.0.1.tar.gz'
md5 'dc62becc03a3e6100843611ebe2707c2'
def install
2012-02-12 19:16:53 +00:00
libexec.install 's3cmd', 'S3'
man1.install 's3cmd.1'
2012-02-12 19:16:53 +00:00
bin.install_symlink libexec+'s3cmd'
end
end