aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-05-31 20:23:17 -0500
committerJack Nagel2014-05-31 20:23:17 -0500
commiteb274cc75cf49c3da2fe03ec691e1efde52c6111 (patch)
tree1949325ea6b440a8b86d45a9bbdc31c3a994fd08
parent46ecf35abdd01375a751267f72dd8db42ee83afe (diff)
downloadhomebrew-eb274cc75cf49c3da2fe03ec691e1efde52c6111.tar.bz2
sassc: modernize autotools deps
-rw-r--r--Library/Formula/sassc.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/sassc.rb b/Library/Formula/sassc.rb
index ed134de7c..3101082e3 100644
--- a/Library/Formula/sassc.rb
+++ b/Library/Formula/sassc.rb
@@ -5,13 +5,13 @@ class Sassc < Formula
url 'https://github.com/hcatlin/sassc/archive/v1.0.1.tar.gz'
sha1 '69e7d97264b252593a3307330a96a5ccdc2813b5'
- depends_on :autoconf
- depends_on :automake
- depends_on :libtool
- depends_on 'libsass'
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
+ depends_on "libsass"
def install
- system "autoreconf -i"
+ system "autoreconf", "-fvi"
system "./configure", "--prefix=#{prefix}"
system "make install"
end