mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
3e0a2d7508
- Add license - Convert to options helpers Sponsored by: Absolight
24 lines
556 B
Makefile
24 lines
556 B
Makefile
# Created by: Aaron Straup Cope
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= add-css-links
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://aaronland.info/xsl/xhtml/add-css-links/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Add one or more CSS <link> elements to an XHTML document
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/xhtml
|
|
|
|
PLIST_FILES= share/xsl/xhtml/add-css-links.xsl
|
|
PLIST_DIRSTRY= share/xsl/xhtml share/xsl
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/xsl/xhtml
|
|
${CP} ${WRKSRC}/*.xsl ${STAGEDIR}${PREFIX}/share/xsl/xhtml/
|
|
|
|
.include <bsd.port.mk>
|