pkgsrc/www/libsass/Makefile
adam 0983c8fa2e Changes 3.3.6:
Expose the Sass language version via the C API

Fixes:
Incorrectly erring on comments in at-rules
Incorrectly dropping internal state of AST nodes
Incorrectly parsing the calc function
Segfault during error handling
Incorrectly identifying the selectors with type-of
Incorrectly erring on ID selectors starting with a number
Producing incorrect output when compile with MSVC
Various segfaults and incorrect output from @extend
2016-06-09 08:47:15 +00:00

22 lines
566 B
Makefile

# $NetBSD: Makefile,v 1.4 2016/06/09 08:47:15 adam Exp $
DISTNAME= libsass-3.3.6
CATEGORIES= www devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=sass/}
MAINTAINER= adam@NetBSD.org
HOMEPAGE= http://sass-lang.com/libsass/
COMMENT= C/C++ port of the Sass CSS precompiler
LICENSE= mit
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= aclocal autoheader autoconf automake gmake
GNU_CONFIGURE= yes
MAKE_FILE= GNUmakefile
pre-configure:
set -e; cd ${WRKSRC}; libtoolize -c -f; \
aclocal; autoheader; automake -a --foreign -i; autoconf
.include "../../mk/bsd.pkg.mk"