diff options
| author | Dominyk Tiller | 2014-11-18 21:51:44 +0000 |
|---|---|---|
| committer | Misty De Meo | 2014-11-18 17:08:21 -0800 |
| commit | dca6b0dc478bc126d64542c9deb70ab8285ebf8e (patch) | |
| tree | 5f53f155e3623f02d151a8c2bb63da958a2d013e /Library/Formula | |
| parent | e564135ac7e470bebd4eb7ed96b6015e24f1897a (diff) | |
| download | homebrew-dca6b0dc478bc126d64542c9deb70ab8285ebf8e.tar.bz2 | |
libsass 3.0.2
Massive update for libsass. Has been merged into the core Sass
repository on Github now, hence the homepage and url shifts.
Closes #34296.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libsass.rb | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Library/Formula/libsass.rb b/Library/Formula/libsass.rb index 8806c0060..9ba079540 100644 --- a/Library/Formula/libsass.rb +++ b/Library/Formula/libsass.rb @@ -1,13 +1,12 @@ -require 'formula' +require "formula" class Libsass < Formula - homepage 'https://github.com/hcatlin/libsass' - url 'https://github.com/hcatlin/libsass/archive/v1.0.1.tar.gz' - sha1 '9524e028bc8ebe84e36895269d07ecc7db496c7c' + homepage "https://github.com/sass/libsass" + url "https://github.com/sass/libsass/archive/3.0.2.tar.gz" + sha1 "415e4377ec73fcf0bd7af949d65f7ca730be1e5c" bottle do cellar :any - revision 1 sha1 "16a59fa3df578bee204a420c2be10475fea032e8" => :yosemite sha1 "c046de601b8c6f1d6f680b28a0882b6db7157d0a" => :mavericks sha1 "d523235bd716776d63fd08e5a1982fbf4b26daa3" => :mountain_lion @@ -16,11 +15,14 @@ class Libsass < Formula depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build + needs :cxx11 def install + ENV.cxx11 system "autoreconf", "-fvi" - system "./configure", "--prefix=#{prefix}" - system "make install" + system "./configure", "--prefix=#{prefix}", "--disable-silent-rules", + "--disable-dependency-tracking" + system "make", "install" end test do |
