mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
7c6e40da03
Approved by: wen@ (co-mentor)
37 lines
713 B
Makefile
37 lines
713 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: SCSS
|
|
# Date created: Mar 22, 2007
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= scss
|
|
PORTVERSION= 0.4.2
|
|
CATEGORIES= textproc scheme
|
|
MASTER_SITES= SAVANNAH \
|
|
http://www.c-s.li/ports/
|
|
|
|
MAINTAINER= cs@FreeBSD.org
|
|
COMMENT= A Scheme module for W3C Cascading Stylesheets recommendation
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= guile:${PORTSDIR}/lang/guile
|
|
|
|
NO_BUILD= yes
|
|
|
|
FILES= lexer.scm parser.scm scss.scm properties.scm \
|
|
interface/sdom.scm common.scm
|
|
|
|
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>
|