226cf15d9a
Adds a devel block for libsass. Closes Homebrew/homebrew#35218. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
66 lines
2.2 KiB
Ruby
66 lines
2.2 KiB
Ruby
class Libsass < Formula
|
|
homepage "https://github.com/sass/libsass"
|
|
url "https://github.com/sass/libsass/archive/3.0.2.tar.gz"
|
|
sha1 "415e4377ec73fcf0bd7af949d65f7ca730be1e5c"
|
|
head "https://github.com/sass/libsass.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "88f00899fb612aabe04a324cfc83bcf025aeb47e" => :yosemite
|
|
sha1 "6e0616f8296f687f8efdcbf4ddc66527a9676a25" => :mavericks
|
|
sha1 "d435e14e0a8a3886ba9dc301aed4db4baceb9fe6" => :mountain_lion
|
|
end
|
|
|
|
devel do
|
|
url "https://github.com/sass/libsass/archive/3.1.0-beta.tar.gz"
|
|
sha1 "478571d0ddf789a41c08587562c52b5b54c3e418"
|
|
version "3.1.0-beta"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
needs :cxx11
|
|
|
|
def install
|
|
ENV.cxx11
|
|
ENV["LIBSASS_VERSION"] = "HEAD" if build.head?
|
|
ENV["LIBSASS_VERSION"] = "3.1.0" if build.devel?
|
|
system "autoreconf", "-fvi"
|
|
system "./configure", "--prefix=#{prefix}", "--disable-silent-rules",
|
|
"--disable-dependency-tracking"
|
|
system "make", "install"
|
|
# The header below is deprecated and should not be used outside of test do.
|
|
# We only install it here for backward compatibility and so brew test works.
|
|
# https://github.com/sass/libsass/wiki/API-Documentation
|
|
include.install "sass_interface.h" if build.devel?
|
|
end
|
|
|
|
test do
|
|
# This will need to be updated when devel = stable due to API changes.
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <sass_interface.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
struct sass_context* sass_ctx = sass_new_context();
|
|
struct sass_options options;
|
|
options.output_style = SASS_STYLE_NESTED;
|
|
options.source_comments = 0;
|
|
options.image_path = "images";
|
|
options.include_paths = "";
|
|
sass_ctx->source_string = "a { color:blue; &:hover { color:red; } }";
|
|
sass_ctx->options = options;
|
|
sass_compile(sass_ctx);
|
|
if(sass_ctx->error_status) {
|
|
return 1;
|
|
} else {
|
|
return strcmp(sass_ctx->output_string, "a {\\n color: blue; }\\n a:hover {\\n color: red; }\\n") != 0;
|
|
}
|
|
}
|
|
EOS
|
|
system ENV.cc, "-o", "test", "test.c", "-lsass"
|
|
system "./test"
|
|
end
|
|
end
|