diff options
| author | Jack Nagel | 2014-05-31 20:11:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-31 20:11:05 -0500 |
| commit | cb94c0815fedf90ca12e65526eff94648f93e285 (patch) | |
| tree | aa704fd2dcd75d8c0de112b09605b1a238baf981 /Library | |
| parent | f3813a660946b5651259750a0b78eefc6328f9d8 (diff) | |
| download | homebrew-cb94c0815fedf90ca12e65526eff94648f93e285.tar.bz2 | |
nanomsg: modernize autotools deps
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/nanomsg.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/nanomsg.rb b/Library/Formula/nanomsg.rb index b1a882cf7..ad7f38f21 100644 --- a/Library/Formula/nanomsg.rb +++ b/Library/Formula/nanomsg.rb @@ -8,8 +8,9 @@ class Nanomsg < Formula head do url 'https://github.com/nanomsg/nanomsg.git' - depends_on :autoconf - depends_on :automake + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build end option 'with-test', 'Verify the build with make check' @@ -18,7 +19,6 @@ class Nanomsg < Formula option 'with-debug', 'Compile with debug symbols' depends_on 'pkg-config'=> :build - depends_on :libtool if build.with? 'doc' depends_on 'asciidoc' => :build |
