aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/afflib.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/afflib.rb b/Library/Formula/afflib.rb
index cb6377253..84681b8f8 100644
--- a/Library/Formula/afflib.rb
+++ b/Library/Formula/afflib.rb
@@ -5,18 +5,18 @@ class Afflib < Formula
url 'https://github.com/simsong/AFFLIBv3/archive/v3.7.4.tar.gz'
sha1 '589dae6f8439e97ab080026701cd0caa0636ac22'
- depends_on :autoconf
- depends_on :automake
- depends_on :libtool
- depends_on 'expat' => :optional
- depends_on 'osxfuse' => :optional
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
+ depends_on "expat" => :optional
+ depends_on "osxfuse" => :optional
# This patch fixes a bug reported upstream over there
# https://github.com/simsong/AFFLIBv3/issues/4
patch :DATA
def install
- system "sh bootstrap.sh"
+ system "./bootstrap.sh"
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]