mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
6e61a7728d
A Scheme module for W3C Cascading Stylesheets recommendation
38 lines
802 B
Makefile
38 lines
802 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: SCSS
|
|
# Date created: Mar 22, 2007
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= scss
|
|
PORTVERSION= 0.2.3
|
|
CATEGORIES= textproc scheme
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ijliao@FreeBSD.org
|
|
COMMENT= A Scheme module for W3C Cascading Stylesheets recommendation
|
|
|
|
RUN_DEPENDS= guile:${PORTSDIR}/lang/guile
|
|
|
|
NO_BUILD= yes
|
|
|
|
FILES= lexer.scm parser.scm scss.scm
|
|
PLIST_FILES= share/guile/scss/lexer.scm \
|
|
share/guile/scss/parser.scm \
|
|
share/guile/scss/scss.scm
|
|
PLIST_DIRS= share/guile/scss
|
|
|
|
INFO= scss
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/guile/scss
|
|
.for f in ${FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/guile/scss
|
|
.endfor
|
|
@${INSTALL_DATA} ${WRKSRC}/scss.info ${PREFIX}/info
|
|
|
|
.include <bsd.port.mk>
|