mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
35 lines
684 B
Makefile
35 lines
684 B
Makefile
PORTNAME= UniversalFeedCreator
|
|
PORTVERSION= 1.8.5
|
|
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>
|