mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
1f9ebeca03
to generate a useful command-line application that can be installed and packaged for several operating systems. WWW: http://libsass.org
32 lines
556 B
Makefile
32 lines
556 B
Makefile
# 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>
|