2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-12 17:32:20 +00:00
|
|
|
|
2009-08-23 17:16:43 +00:00
|
|
|
class Sshfs <Formula
|
2009-11-21 17:51:24 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/fuse/sshfs-fuse/2.2/sshfs-fuse-2.2.tar.gz'
|
2009-08-12 17:32:20 +00:00
|
|
|
# This is the original project homepage, but we link to something more useful for OS X users
|
2009-11-21 17:51:24 +00:00
|
|
|
#homepage 'http://fuse.sourceforge.net/sshfs.html'
|
|
|
|
homepage 'http://code.google.com/p/macfuse/wiki/MACFUSE_FS_SSHFS'
|
|
|
|
md5 '26e9206eb5169e87e6f95f54bc005a4f'
|
2009-08-12 17:32:20 +00:00
|
|
|
|
|
|
|
def patches
|
2009-09-16 16:08:32 +00:00
|
|
|
"http://macfuse.googlecode.com/svn/tags/macfuse-2.0.3|2/filesystems/sshfs/sshfs-fuse-2.2-macosx.patch"
|
2009-08-12 17:32:20 +00:00
|
|
|
end
|
|
|
|
|
2009-09-18 18:16:39 +00:00
|
|
|
depends_on 'pkg-config'
|
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'macfuse'
|
2009-08-12 17:32:20 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# Steal compile flags from macfuse_buildtool.sh
|
|
|
|
# Except that those flags include "-DSSH_NODELAY_WORKAROUND" which causes a bogus
|
|
|
|
# warning message to be printed to the console, so cut out that crap.
|
2009-11-21 17:51:24 +00:00
|
|
|
ENV.append 'CFLAGS', "-D__FreeBSD__=10 -DDARWIN_SEMAPHORE_COMPAT"
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
2009-08-12 17:32:20 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|