2011-09-01 10:56:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Fuse4x < Formula
|
2012-05-29 21:23:08 +00:00
|
|
|
homepage 'http://fuse4x.github.com'
|
2012-10-10 23:37:25 +00:00
|
|
|
url 'https://github.com/fuse4x/fuse/tarball/fuse4x_0_9_2'
|
|
|
|
sha1 '316df7c0bb2caa6d32300b31fdeba3267ee6f41f'
|
2012-07-28 22:46:24 +00:00
|
|
|
|
|
|
|
# Always use newer versions of these tools
|
|
|
|
depends_on 'automake' => :build
|
|
|
|
depends_on 'libtool' => :build
|
2011-09-01 10:56:47 +00:00
|
|
|
|
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'fuse4x-kext'
|
2012-02-28 17:18:43 +00:00
|
|
|
|
2011-09-01 10:56:47 +00:00
|
|
|
def install
|
2011-09-20 17:13:16 +00:00
|
|
|
# Build universal if the hardware can handle it---otherwise 32 bit only
|
|
|
|
MacOS.prefer_64_bit? ? ENV.universal_binary : ENV.m32
|
2011-09-01 10:56:47 +00:00
|
|
|
|
2012-02-27 12:21:50 +00:00
|
|
|
system "autoreconf", "--force", "--install"
|
2011-09-20 17:13:16 +00:00
|
|
|
|
2012-03-18 20:07:17 +00:00
|
|
|
# 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}"
|
2011-09-01 10:56:47 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|