diff options
author | Nicola Vitale <nivit@FreeBSD.org> | 2014-04-13 03:16:42 +0000 |
---|---|---|
committer | Nicola Vitale <nivit@FreeBSD.org> | 2014-04-13 03:16:42 +0000 |
commit | 1f9ebeca033394a6e4a80e8e477bd83e2bc6713c (patch) | |
tree | 2208f0fed438204b59e02099c909ff6f80199666 /textproc/sassc/Makefile | |
parent | Libsass is a C/C++ port of the Sass CSS precompiler. (diff) |
SassC is a wrapper around libsass (http://github.com/hcatlin/libsass) used
to generate a useful command-line application that can be installed and
packaged for several operating systems.
WWW: http://libsass.org
Notes
Notes:
svn path=/head/; revision=351182
Diffstat (limited to 'textproc/sassc/Makefile')
-rw-r--r-- | textproc/sassc/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/textproc/sassc/Makefile b/textproc/sassc/Makefile new file mode 100644 index 000000000000..d32047c030ce --- /dev/null +++ b/textproc/sassc/Makefile @@ -0,0 +1,31 @@ +# Created by: Nicola Vitale <nivit@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= sassc +PORTVERSION= 1.0.1 +#PORTREVISION= 0 +CATEGORIES= textproc + +MAINTAINER= nivit@FreeBSD.org +COMMENT= Wrapper around libsass + +LICENSE= MIT + +LIB_DEPENDS= libsass.so:${PORTSDIR}/textproc/libsass + +AUTOMAKE_ARGS= --add-missing + +CPPFLAGS+= -I${LOCALBASE}/include + +GH_ACCOUNT= hcatlin +GH_COMMIT= 9451dd7 +GH_TAGNAME= v${PORTVERSION} + +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= bin/sassc + +USE_AUTOTOOLS= aclocal autoconf autoheader automake libtoolize +USE_GITHUB= yes + +.include <bsd.port.mk> |