blob: 9a42cf0ab729c0e78702853c2acf9eb1adb3a7a4 (
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 "#{bin}/bindfs", "-V"
  end
end
  |