mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
dafcdc356f
Changes: https://github.com/phpsysinfo/phpsysinfo/compare/v3.3.2...v3.3.4 PR: 254847 Submitted by: Ralf van der Enden <tremere AT cainites DOT net> (maintainer)
34 lines
786 B
Makefile
34 lines
786 B
Makefile
# Created by: Bob Bomar <bob@fly.homeunix.org>
|
|
|
|
PORTNAME= phpsysinfo
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.3.4
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= tremere@cainites.net
|
|
COMMENT= PHP script for displaying system information
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= php:web shebangfix
|
|
USE_GITHUB= yes
|
|
USE_PHP= dom mbstring pcre simplexml xml
|
|
|
|
SHEBANG_FILES= tools/check.sh
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
SUB_FILES= pkg-message
|
|
|
|
PLIST_FILES= "@sample ${WWWDIR}/phpsysinfo.ini.new ${WWWDIR}/phpsysinfo.ini"
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} "! -name .travis.yml ! -name .gitignore")
|
|
@${FIND} -s ${STAGEDIR}${WWWDIR} -not -type d | \
|
|
${SED} -e 's#^${STAGEDIR}${PREFIX}/##' > ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|