aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bindfs.rb
blob: 023767c3cebce3e504f68647b3d5e55af832f32a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Bindfs < Formula
  url 'http://bindfs.googlecode.com/files/bindfs-1.9.tar.gz'
  homepage 'http://code.google.com/p/bindfs/'
  md5 '610778ad89bc5b0ff0be7b44bb2b6f0c'

  depends_on 'fuse4x'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end

  def test
    system "bindfs -V"
  end
end