forked from Lainports/freebsd-ports
From ChangeLog: https://github.com/RSS-Bridge/rss-bridge/releases/tag/2020-11-10 "Release description is coming up" :S PR: 251016 Submitted by: osidorkin@gmail.com (maintainer)
37 lines
700 B
Makefile
37 lines
700 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= rss-bridge
|
|
DISTVERSION= 2020-11-10
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= osidorkin@gmail.com
|
|
COMMENT= RSS feed generator for websites missing it
|
|
|
|
LICENSE= PD
|
|
|
|
USES= php:web
|
|
USE_PHP= curl json mbstring openssl simplexml
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= RSS-Bridge
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
|
|
|
|
OPTIONS_DEFINE= SQLITE
|
|
OPTIONS_DEFAULT=SQLITE
|
|
OPTIONS_SUB= yes
|
|
|
|
SQLITE_DESC= Enable sqlite-based cache support (requires sqlite)
|
|
|
|
SQLITE_USE= PHP=sqlite3
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
@(cd ${WRKSRC} && ${COPYTREE_SHARE} "." ${STAGEDIR}${WWWDIR} "-not ( \
|
|
-name LICENSE -or -name .gitkeep )" )
|
|
|
|
.include <bsd.port.mk>
|