aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-05-16 23:12:44 -0500
committerJack Nagel2014-05-16 23:12:44 -0500
commit338aba785f2cb88fb49dcd87c5898bbfeba199db (patch)
tree910370d4d0c4c6a2c7b90e181edee4fa90aab600 /Library/Formula
parent08b4738bcdbd4f75801e270fabe6601763515a9b (diff)
downloadhomebrew-338aba785f2cb88fb49dcd87c5898bbfeba199db.tar.bz2
curlftpfs: remove old automake hack
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/curlftpfs.rb22
1 files changed, 9 insertions, 13 deletions
diff --git a/Library/Formula/curlftpfs.rb b/Library/Formula/curlftpfs.rb
index 8e1798024..06932f30f 100644
--- a/Library/Formula/curlftpfs.rb
+++ b/Library/Formula/curlftpfs.rb
@@ -7,21 +7,17 @@ class Curlftpfs < Formula
head 'https://github.com/rfw/curlftpfs.git'
- depends_on :autoconf
- depends_on :automake
- depends_on :libtool
-
- depends_on 'pkg-config' => :build
-
- depends_on 'osxfuse'
- depends_on 'glib'
+ depends_on "pkg-config" => :build
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
+ depends_on :x11
+ depends_on "osxfuse"
+ depends_on "glib"
def install
- # Compatibility with Automake 1.13 and newer.
- inreplace 'configure.ac', 'AM_CONFIG_HEADER', 'AC_CONFIG_HEADERS'
-
- system "autoreconf", "--force", "--install"
- ENV.append 'CPPFLAGS', '-D__off_t=off_t'
+ ENV.append "CPPFLAGS", "-D__off_t=off_t"
+ system "autoreconf", "-fvi"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"