aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-06-01 21:38:18 -0500
committerJack Nagel2014-06-01 21:38:18 -0500
commitc9f93ca96d4ab39539c73f003c2656c57c15e46b (patch)
tree887b55472a086472bc47b915adf5084e4b946f06 /Library
parent89f481aef7b90afb0e17b6bc2191984266ec54cf (diff)
downloadhomebrew-c9f93ca96d4ab39539c73f003c2656c57c15e46b.tar.bz2
sdl: modernize autotools deps
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sdl.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/sdl.rb b/Library/Formula/sdl.rb
index 7d75d0b5b..614420b06 100644
--- a/Library/Formula/sdl.rb
+++ b/Library/Formula/sdl.rb
@@ -15,9 +15,9 @@ class Sdl < Formula
head do
url 'http://hg.libsdl.org/SDL', :branch => 'SDL-1.2', :using => :hg
- depends_on :autoconf
- depends_on :automake
- depends_on :libtool
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
end
option 'with-x11-driver', 'Compile with support for X11 video driver'
@@ -25,9 +25,9 @@ class Sdl < Formula
if build.with? 'x11-driver'
depends_on :x11
- depends_on :autoconf
- depends_on :automake
- depends_on :libtool
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
end
# Fix for a bug preventing SDL from building at all on OSX 10.9 Mavericks