diff options
| -rw-r--r-- | Library/Formula/fwknop.rb | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/fwknop.rb b/Library/Formula/fwknop.rb index 5c002212b..2d7a987d1 100644 --- a/Library/Formula/fwknop.rb +++ b/Library/Formula/fwknop.rb @@ -6,14 +6,13 @@ class Fwknop < Formula url 'https://github.com/mrash/fwknop/archive/2.6.2.tar.gz' sha1 '3e518d3db0831061b027475869c77a7ff304219e' - depends_on :automake - depends_on :autoconf - depends_on :libtool - - depends_on 'gpgme' + depends_on "automake" => :build + depends_on "autoconf" => :build + depends_on "libtool" => :build + depends_on "gpgme" def install - system './autogen.sh' if build.head? or !File.exist?('configure') + system "./autogen.sh" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-gpgme" |
