diff options
| author | Joel Chippindale | 2009-12-17 22:10:00 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-11 11:34:41 -0800 |
| commit | c5db79df8f4c546e5a47aa6c90b80ff3891cbc17 (patch) | |
| tree | 511a3441517212c2e7dcbfc80f1aad8051547fa9 /Library/Formula/s3sync.rb | |
| parent | 2f75c78c68efe7b96b49bfa903b3fe5ad675ce38 (diff) | |
| download | homebrew-c5db79df8f4c546e5a47aa6c90b80ff3891cbc17.tar.bz2 | |
Add s3sync formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/s3sync.rb')
| -rw-r--r-- | Library/Formula/s3sync.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/s3sync.rb b/Library/Formula/s3sync.rb new file mode 100644 index 000000000..534f464bd --- /dev/null +++ b/Library/Formula/s3sync.rb @@ -0,0 +1,17 @@ +require 'formula' + +class S3sync <Formula + head 'http://s3sync-s3cmd.googlecode.com/svn/trunk/', :revision => '4' + version '1.2.6' + homepage 'http://s3sync.net' + + def install + bin.install Dir['s3sync/*.rb'] + prefix.install Dir['s3sync/*.txt'] + prefix.install Dir['s3sync/*.example'] + end + + def caveats + "See #{prefix}/README.txt for details of how to set up the correct environment to use s3sync" + end +end |
