homebrew-core/Formula/sshfs.rb

28 lines
718 B
Ruby
Raw Normal View History

require 'formula'
class Sshfs < Formula
homepage 'http://fuse.sourceforge.net/sshfs.html'
url 'https://github.com/fuse4x/sshfs/tarball/sshfs_2_4_0'
2012-08-23 22:15:33 +00:00
sha1 '37a9a49a3042fad43f168f25454b56060a48e210'
2012-07-07 18:08:22 +00:00
depends_on :automake
depends_on :libtool
depends_on 'pkg-config' => :build
depends_on 'fuse4x'
depends_on 'glib'
def install
system "autoreconf", "--force", "--install"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
2012-07-07 18:08:22 +00:00
def caveats; <<-EOS.undent
Make sure to follow the directions given by `brew info fuse4x-kext`
before trying to use a FUSE-based filesystem.
EOS
end
end