forked from Lainports/freebsd-ports
Changes since 1.4.0: 1.5.0 What's Changed * Add fallback for when username cannot be determined. * Fix uptime on some systems without uptime or date. * Fix corrupt output for systems that don't support uptime. * Support disk info on Haiku. * More accurate disk info on IRIX and Digital UNIX. * Add cpus info for displaying the number of cores. * Support AIX. Full Changelog: https://github.com/Un1q32/pfetch/compare/1.4.0...1.5.0
23 lines
442 B
Makefile
23 lines
442 B
Makefile
PORTNAME= pfetch
|
|
DISTVERSION= 1.5.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= lcook@FreeBSD.org
|
|
COMMENT= Pretty system information tool written in POSIX sh
|
|
WWW= https://github.com/Un1q32/pfetch
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Un1q32
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|