49 lines
1.5 KiB
Ruby
49 lines
1.5 KiB
Ruby
require "formula"
|
|
|
|
class Osxfuse < Formula
|
|
homepage "http://osxfuse.github.io"
|
|
url "https://github.com/osxfuse/osxfuse.git", :tag => "osxfuse-2.7.1"
|
|
|
|
head "https://github.com/osxfuse/osxfuse.git", :branch => "osxfuse-2"
|
|
|
|
bottle do
|
|
sha1 "4bd80122d662bf283fb400f3ea6cfe5369f9af7f" => :mavericks
|
|
sha1 "f9b3687629cdd8fa92e2805e1e4b4b63521bcaf5" => :mountain_lion
|
|
sha1 "81de3186770d7c93dfa6cd8626016c78bf0b1ee2" => :lion
|
|
end
|
|
|
|
depends_on :macos => :snow_leopard
|
|
depends_on :xcode => :build
|
|
depends_on ConflictsWithBinaryOsxfuse
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "gettext" => :build
|
|
|
|
conflicts_with "fuse4x", :because => "both install `fuse.pc`"
|
|
|
|
def install
|
|
# Do not override Xcode build settings
|
|
ENV.remove_cc_etc
|
|
|
|
system "./build.sh", "-t", "homebrew", "-f", prefix
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
If upgrading from a previous version of osxfuse, the previous kernel extension
|
|
will need to be unloaded before installing the new version. First, check that
|
|
no FUSE-based file systems are running:
|
|
|
|
mount -t osxfusefs
|
|
|
|
Unmount all FUSE file systems and then unload the kernel extension:
|
|
|
|
sudo kextunload -b com.github.osxfuse.filesystems.osxfusefs
|
|
|
|
The new osxfuse file system bundle needs to be installed by the root user:
|
|
|
|
sudo /bin/cp -RfX #{opt_prefix}/Library/Filesystems/osxfusefs.fs /Library/Filesystems/
|
|
sudo chmod +s /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs
|
|
EOS
|
|
end
|
|
end
|