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

class Bindfs < Formula
  homepage 'http://bindfs.org/'
  url 'http://bindfs.googlecode.com/files/bindfs-1.12.tar.gz'
  sha1 'e4d5d9ab3056c06e1e8b9fe423222de86cce46cf'

  depends_on 'pkg-config' => :build
  depends_on 'osxfuse'

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

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