aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sshfs.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-07-07 11:08:22 -0700
committerAdam Vandenberg2012-07-10 08:56:02 -0700
commit1f32fa43a77d75fe354e9e59bd23e9b9d934e09c (patch)
treec49ca57d6e333035e48616bf89eaba0d067da021 /Library/Formula/sshfs.rb
parentcc6e0124437c4ceabbc0542770ed154aa0fb9e4e (diff)
downloadhomebrew-1f32fa43a77d75fe354e9e59bd23e9b9d934e09c.tar.bz2
Use autotools symbols
Diffstat (limited to 'Library/Formula/sshfs.rb')
-rw-r--r--Library/Formula/sshfs.rb17
1 files changed, 6 insertions, 11 deletions
diff --git a/Library/Formula/sshfs.rb b/Library/Formula/sshfs.rb
index 3ed69cb31..b4831d1cb 100644
--- a/Library/Formula/sshfs.rb
+++ b/Library/Formula/sshfs.rb
@@ -6,17 +6,13 @@ class Sshfs < Formula
md5 'c9ea547b9684ec4d85437393a2731322'
version '2.4.0'
+ depends_on :automake
+ depends_on :libtool
+
depends_on 'pkg-config' => :build
depends_on 'fuse4x'
depends_on 'glib'
- if MacOS.xcode_version >= "4.3"
- # remove the autoreconf if possible, no comment provided about why it is there
- # so we have no basis to make a decision at this point.
- depends_on "automake" => :build
- depends_on "libtool" => :build
- end
-
def install
system "autoreconf", "--force", "--install"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
@@ -24,10 +20,9 @@ class Sshfs < Formula
system "make install"
end
- def caveats
- <<-EOS.undent
- Make sure to follow the directions given by `brew info fuse4x-kext`
- before trying to use a FUSE-based filesystem.
+ 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