2010-03-19 01:04:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class S3Backer < Formula
|
2010-03-19 01:04:49 +00:00
|
|
|
url 'http://s3backer.googlecode.com/files/s3backer-1.3.1.tar.gz'
|
|
|
|
homepage 'http://code.google.com/p/s3backer/'
|
|
|
|
md5 '98907b98424c867a6e52ffdfbbdafce4'
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-03-19 01:04:49 +00:00
|
|
|
|
|
|
|
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
|