diff options
| author | Jack Nagel | 2014-05-31 20:11:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-31 20:11:05 -0500 |
| commit | c6cf8acbf408406b5ec7ccf712c4cd4a7dfe5c62 (patch) | |
| tree | b0de9131661cc8f48d67440ab963dd93912c0bab /Library/Formula | |
| parent | 329e627da0a9d4cb652b9f07d1888a1fbf7bd55d (diff) | |
| download | homebrew-c6cf8acbf408406b5ec7ccf712c4cd4a7dfe5c62.tar.bz2 | |
subversion: modernize autotools deps
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/qemu.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/subversion.rb | 9 |
2 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/qemu.rb b/Library/Formula/qemu.rb index 236897c03..c3218d925 100644 --- a/Library/Formula/qemu.rb +++ b/Library/Formula/qemu.rb @@ -9,7 +9,7 @@ class Qemu < Formula head 'git://git.qemu-project.org/qemu.git' depends_on 'pkg-config' => :build - depends_on :libtool + depends_on 'libtool' => :build depends_on 'jpeg' depends_on 'gnutls' depends_on 'glib' diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb index 84dcc6515..cc3f98236 100644 --- a/Library/Formula/subversion.rb +++ b/Library/Formula/subversion.rb @@ -23,16 +23,15 @@ class Subversion < Formula sha1 'eafc8317d7a9c77d4db9ce1e5c71a33822f57c3a' end - depends_on 'pkg-config' => :build + depends_on "pkg-config" => :build + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build # Always build against Homebrew versions instead of system versions for consistency. depends_on 'sqlite' depends_on :python => :optional - depends_on :autoconf - depends_on :automake - depends_on :libtool - # Bindings require swig depends_on 'swig' if build.include? 'perl' or build.with? 'python' or build.include? 'ruby' |
