aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/s3-backer.rb
blob: 0e8ddc5d8e40bb684be252c3c2d957e0e7db570b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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