View | Details | Raw Unified | Return to bug 258736 | Differences between
and this patch

Collapse All | Expand All

(-)b/sysutils/Makefile (+1 lines)
Lines 220-225 Link Here
220
    SUBDIR += cpdup
220
    SUBDIR += cpdup
221
    SUBDIR += cpu-x
221
    SUBDIR += cpu-x
222
    SUBDIR += cpuburn
222
    SUBDIR += cpuburn
223
    SUBDIR += cpufetch
223
    SUBDIR += cpuid
224
    SUBDIR += cpuid
224
    SUBDIR += cpuid2cpuflags
225
    SUBDIR += cpuid2cpuflags
225
    SUBDIR += cpulimit
226
    SUBDIR += cpulimit
(-)b/sysutils/cpufetch/Makefile (+28 lines)
Added Link Here
1
PORTNAME=	cpufetch
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	1.00
4
CATEGORIES=	sysutils
5
6
MAINTAINER=	joel@insane.engineer
7
COMMENT=	Simple yet fancy CPU architecture fetching tool
8
9
LICENSE=	MIT
10
LICENSE_FILE=	${WRKSRC}/LICENSE
11
12
ONLY_FOR_ARCHS=	amd64
13
14
USES=		gmake
15
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	Dr-Noob
18
GH_PROJECT=	cpufetch
19
20
PLIST_FILES=	bin/cpufetch \
21
		man/man1/cpufetch.1.gz
22
23
# Custom install as upstream uses invalid -Dm755 and -Dm644 instead of ${INSTALL_PROGRAM} and ${INSTALL_DATA} accordingly.
24
do-install:
25
	${INSTALL_PROGRAM} ${WRKSRC}/cpufetch ${STAGEDIR}${PREFIX}/bin
26
	${INSTALL_MAN} ${WRKSRC}/cpufetch.1 ${STAGEDIR}${PREFIX}/man/man1
27
28
.include <bsd.port.mk>
(-)b/sysutils/cpufetch/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1632680562
2
SHA256 (Dr-Noob-cpufetch-v1.00_GH0.tar.gz) = 2254c2578435cc35c4d325b25fdff4c4b681de92cbce9a7a36e58ad58a3d9173
3
SIZE (Dr-Noob-cpufetch-v1.00_GH0.tar.gz) = 317439
(-)b/sysutils/cpufetch/pkg-descr (+6 lines)
Added Link Here
1
Simple yet fancy CPU architecture fetching tool.
2
3
cpufetch is a command-line tool written in C that displays the CPU information
4
in a clean and beautiful way.
5
6
WWW: https://github.com/Dr-Noob/cpufetch

Return to bug 258736