homebrew-core/Formula/fuse4x.rb
Deniss Afonin 1f694b9a27 New formula: fuse4x
Provides libraries required to build and run programs that use FUSE
filesystems. Note that this formula installs `libfuse4x` instead of the
traditional `libfuse` in order to avoid clashing with MacFUSE and other
`libfuse` distributions---such as the one bundled with VMWare Fusion.

Configure scripts for software expecting to link against `libfuse` will need to
be modified accordingly.

Closes Homebrew/homebrew#7371.
Closes Homebrew/homebrew#6185.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-09-11 18:54:11 -07:00

20 lines
540 B
Ruby

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