From 78b2f5dcfed759dfb1bca57214397e8531aac369 Mon Sep 17 00:00:00 2001 From: Joel Chippindale Date: Thu, 17 Dec 2009 22:10:00 +0000 Subject: [PATCH] Add s3sync formula Signed-off-by: Adam Vandenberg --- Formula/s3sync.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Formula/s3sync.rb diff --git a/Formula/s3sync.rb b/Formula/s3sync.rb new file mode 100644 index 0000000000..534f464bd8 --- /dev/null +++ b/Formula/s3sync.rb @@ -0,0 +1,17 @@ +require 'formula' + +class S3sync '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