d24fec61ab
0.10.0 contains a kernel panic. It is going to be fixed in 0.10.1. This reverts commit 8a0932f320208db56c10d1d16fff31c22e3be87e. Closes Homebrew/homebrew#11888. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
27 lines
848 B
Ruby
27 lines
848 B
Ruby
require 'formula'
|
|
|
|
class Fuse4x < Formula
|
|
homepage 'http://fuse4x.org/'
|
|
# NOTE: Version 0.10 contains a nasty race condition. Wait for 0.10.1
|
|
url 'https://github.com/fuse4x/fuse.git', :tag => "fuse4x_0_9_0"
|
|
version "0.9.0"
|
|
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on 'gettext'
|
|
depends_on 'fuse4x-kext'
|
|
|
|
def install
|
|
# Build universal if the hardware can handle it---otherwise 32 bit only
|
|
MacOS.prefer_64_bit? ? ENV.universal_binary : ENV.m32
|
|
|
|
system "autoreconf", "--force", "--install"
|
|
|
|
# force 64bit inodes on 10.5. On 10.6+ this is no-op.
|
|
ENV.append_to_cflags "-D_DARWIN_USE_64_BIT_INODE"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-static",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|