blob: a590f511c2fffa086d311759763e964ae84c6c62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
PORTNAME= UniversalFeedCreator
PORTVERSION= 1.8.6
DISTVERSIONPREFIX= v
CATEGORIES= www
MAINTAINER= dvl@FreeBSD.org
COMMENT= RSS and Atom feed generator by Kai Blankenhorn
WWW= https://github.com/flack/UniversalFeedCreator
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= php
USE_GITHUB= yes
GH_ACCOUNT= flack
NO_BUILD= YES
DOTFILES= .editorconfig .gitattributes .gitignore .travis.yml
.include <bsd.port.pre.mk>
do-install:
${MKDIR} ${STAGEDIR}/${DATADIR}
# install everything +x, because it's easier
@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}/${DATADIR})
.for _dot in ${DOTFILES}
${RM} ${STAGEDIR}/${DATADIR}/${_dot}
.endfor
.include <bsd.port.post.mk>
|