aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2018-02-07 17:13:27 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2018-02-07 17:13:27 +0000
commit6fe9227096c916b41e7390071bd150cc8fa41a7f (patch)
tree9d324ef0a77d1534ad975a39886164d4976127dc /www
parent73e275c64c46fc05347d771b5f0afc16b06e4226 (diff)
- Simplify installation
- Add NO_ARCH Approved by: portmgr blanket
Notes
Notes: svn path=/head/; revision=461156
Diffstat (limited to 'www')
-rw-r--r--www/skytemplate/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/www/skytemplate/Makefile b/www/skytemplate/Makefile
index 41b69e4294aa..d3b4efe29aeb 100644
--- a/www/skytemplate/Makefile
+++ b/www/skytemplate/Makefile
@@ -13,15 +13,14 @@ COMMENT= Yet another PHP compiling template engine
USES= php:web
NO_BUILD= yes
+NO_ARCH= yes
SUB_FILES= pkg-message
do-install:
- ${MKDIR} ${STAGEDIR}${DATADIR}
-.for f in class.SkyTemplate.php class.SkyTemplate_withDaddy.php
- ${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DATADIR}
- ${MKDIR} ${STAGEDIR}${DATADIR}/SkyTpl
+ @${MKDIR} ${STAGEDIR}${DATADIR}
+ ${INSTALL_DATA} ${WRKSRC}/*.php ${STAGEDIR}${DATADIR}
+ @${MKDIR} ${STAGEDIR}${DATADIR}/SkyTpl
${INSTALL_DATA} ${WRKSRC}/SkyTpl/* ${STAGEDIR}${DATADIR}/SkyTpl
-.endfor
.include <bsd.port.mk>