aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bindfs.rb
blob: ca435b73d820b3c7bbb525d2354d06a7a6379a98 (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/'
  sha1 'cf8c2acf67f0e98593ec9f88ad00e12bbbc84f2e'

  depends_on 'fuse4x'

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

  def test
    system "#{bin}/bindfs", "-V"
  end
end