7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
17 lines
423 B
Ruby
17 lines
423 B
Ruby
require 'formula'
|
|
|
|
class S3sync <Formula
|
|
url '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
|