aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-16 20:11:59 -0800
committerAdam Vandenberg2013-11-16 20:12:06 -0800
commitea5123acbd917e148af1da2c1f3ccbe3f0f8219f (patch)
tree4b9a800179df955deef1376b3d220f335ee7bfd2 /Library/Formula
parentf24da9c320aa1b59488f3851488cc226480f5aa9 (diff)
downloadhomebrew-ea5123acbd917e148af1da2c1f3ccbe3f0f8219f.tar.bz2
ext2fuse: use osxfuse
Closes #17951. Closes #22956.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ext2fuse.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/ext2fuse.rb b/Library/Formula/ext2fuse.rb
index 7f6798bb8..2b7c8ec17 100644
--- a/Library/Formula/ext2fuse.rb
+++ b/Library/Formula/ext2fuse.rb
@@ -5,13 +5,13 @@ class Ext2fuse < Formula
url 'http://downloads.sourceforge.net/project/ext2fuse/ext2fuse/0.8.1/ext2fuse-src-0.8.1.tar.gz'
sha1 '6a13fce7842ead1485a4f48cb57c1272d990b5a5'
- depends_on 'fuse4x'
+ depends_on 'osxfuse'
depends_on 'e2fsprogs'
def install
- ENV.append 'LIBS', "-lfuse4x"
- ENV.append 'CFLAGS', '-D__FreeBSD__=10 -DENABLE_SWAPFS'
- ENV.append 'CFLAGS', '--std=gnu89' if ENV.compiler == :clang
+ ENV.append "LIBS", "-losxfuse"
+ ENV.append "CFLAGS", "-D__FreeBSD__=10 -DENABLE_SWAPFS -I#{HOMEBREW_PREFIX}/opt/osxfuse/include/osxfuse/fuse"
+ ENV.append "CFLAGS", "--std=gnu89" if ENV.compiler == :clang
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"