blob: 17689ce543d8e8021ccb8bdb0261f7bea557ec34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile,v 1.7 2017/06/13 12:44:06 fhajny Exp $
DISTNAME= libsass-3.4.5
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
PKGCONFIG_OVERRIDE= src/support/libsass.pc.in
pre-configure:
set -e; cd ${WRKSRC}; libtoolize -c -f; \
aclocal; autoheader; automake -a --foreign -i; autoconf
.include "../../mk/bsd.pkg.mk"
|