freebsd-ports/sysutils/cpufetch/Makefile
Alexey Dokuchaev 61b6613393 Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.)
ONLY_FOR_ARCHS_REASON is used as part of the sentence and thus should
start with lower-case letter and not end with a period which is added
by the framework, similar to other knobs like BROKEN, IGNORE, et al.

While here, remove needless quoting, add missing Oxford comma, expand
contractions and jargonisms, use correct spelling for proper names.
2021-10-25 12:58:29 +00:00

28 lines
696 B
Makefile

PORTNAME= cpufetch
DISTVERSIONPREFIX= v
DISTVERSION= 1.00
CATEGORIES= sysutils
MAINTAINER= joel@insane.engineer
COMMENT= Simple yet fancy CPU architecture fetching tool
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
ONLY_FOR_ARCHS= amd64
ONLY_FOR_ARCHS_REASON= not yet ported to other architectures
USES= gmake
USE_GITHUB= yes
GH_ACCOUNT= Dr-Noob
PLIST_FILES= bin/cpufetch \
man/man1/cpufetch.1.gz
# Custom install as upstream uses invalid -Dm755 and -Dm644 instead of ${INSTALL_PROGRAM} and ${INSTALL_DATA} accordingly.
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cpufetch ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/cpufetch.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>