homebrew-core/Formula/s3-backer.rb
Tim Dysinger 370547149d s3-backer 1.3.2
Signed-off-by: Tim Dysinger <tim@dysinger.net>
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-31 17:16:37 -07:00

21 lines
539 B
Ruby

require 'formula'
class S3Backer < Formula
url 'http://s3backer.googlecode.com/files/s3backer-1.3.2.tar.gz'
homepage 'http://code.google.com/p/s3backer/'
sha1 'badc003ffb0830a3fa59c9f39f13ad94729cbcf1'
depends_on 'pkg-config' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
def caveats
<<-EOS.undent
This depends on the MacFUSE installation from http://code.google.com/p/macfuse/
MacFUSE must be installed prior to installing this formula.
EOS
end
end