diff options
| author | Jack Nagel | 2014-05-31 20:13:07 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-05-31 20:13:07 -0500 | 
| commit | d9475d55eb0e8d3e810aa56dec92506c643a699a (patch) | |
| tree | 50cec50c0a4e2776a3f3e14ca336928b042eed14 | |
| parent | 7a9089cfa429acc83ea3b2b2fe0d2cbafd6a5ccf (diff) | |
| download | homebrew-d9475d55eb0e8d3e810aa56dec92506c643a699a.tar.bz2 | |
voms: modernize autotools deps
| -rw-r--r-- | Library/Formula/voms.rb | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/Library/Formula/voms.rb b/Library/Formula/voms.rb index 3dee2ab5d..a298d0463 100644 --- a/Library/Formula/voms.rb +++ b/Library/Formula/voms.rb @@ -5,12 +5,12 @@ class Voms < Formula    url 'https://github.com/italiangrid/voms/archive/2_0_11.tar.gz'    sha1 'dabc2ebe01d01052f5b3849cb04f4947a38d99dd' -  depends_on :autoconf -  depends_on :automake -  depends_on :libtool +  depends_on "autoconf" => :build +  depends_on "automake" => :build +  depends_on "libtool" => :build    def install -    system "sh autogen.sh" +    system "./autogen.sh"      system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"      system "make install"    end | 
