1f694b9a27
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>
20 lines
540 B
Ruby
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
|