1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/textproc/scss/Makefile
Dmitry Marakasov 067243df26 - Fix LICENSE
- Add LICENSE_FILE
- Add NO_ARCH
- Style fixes

Approved by:	portmgr blanket
2017-09-20 09:01:56 +00:00

34 lines
714 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= scss
PORTVERSION= 0.4.2
PORTREVISION= 1
CATEGORIES= textproc scheme
MASTER_SITES= SAVANNAH \
http://www.c-s.li/ports/
MAINTAINER= cs@FreeBSD.org
COMMENT= Scheme module for W3C Cascading Stylesheets recommendation
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= guile:lang/guile
NO_BUILD= yes
NO_ARCH= yes
FILES= lexer.scm parser.scm scss.scm properties.scm \
interface/sdom.scm common.scm
INFO= scss
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/guile/scss
.for f in ${FILES}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/share/guile/scss
.endfor
${INSTALL_DATA} ${WRKSRC}/scss.info ${STAGEDIR}${PREFIX}/info
.include <bsd.port.mk>