homebrew-core/Formula/s3sync.rb
Mike McQuaid 7a4dabfc1a Use hash rockets again. (#5177)
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
2016-09-24 16:45:48 +01:00

17 lines
425 B
Ruby

class S3sync < Formula
desc "Interfaces to Amazon S3"
homepage "http://s3sync.net"
url "http://s3sync-s3cmd.googlecode.com/svn/trunk/", :revision => "4"
version "1.2.6"
bottle :unneeded
def install
bin.install Dir["s3sync/*.rb"]
prefix.install Dir["s3sync/*.{example,txt}"]
end
def caveats
"See #{prefix}/README.txt for details of how to set up the correct environment to use s3sync"
end
end