diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/sassc.rb | 10 |
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 |
