diff options
| author | Jack Nagel | 2014-05-31 20:15:09 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-05-31 20:15:09 -0500 | 
| commit | afe730a0d5b749d4a472f8781694a4364bd51463 (patch) | |
| tree | c93946f620c1b3213686bf10e29dad69aa95cbae | |
| parent | d9475d55eb0e8d3e810aa56dec92506c643a699a (diff) | |
| download | homebrew-afe730a0d5b749d4a472f8781694a4364bd51463.tar.bz2 | |
afflib: modernize autotools deps
| -rw-r--r-- | Library/Formula/afflib.rb | 12 | 
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}"] | 
