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

class Fuse4x < Formula
  homepage 'http://fuse4x.org/'
  url 'https://github.com/fuse4x/fuse.git', :tag => "fuse4x_0_8_12"
  version "0.8.12"

  depends_on 'gettext'
  depends_on 'fuse4x-kext'

  def install
    gettext = Formula.factory('gettext')

    ENV['ACLOCAL'] = "/usr/bin/aclocal -I#{gettext.share}/aclocal"

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