Changelog: https://github.com/dylanaraps/neofetch/releases/tag/7.1.0 Also, add a patch to fix the cpu temperature and add ksmn(4) and adt(4) support OK bket@
29 lines
558 B
Makefile
29 lines
558 B
Makefile
# $OpenBSD: Makefile,v 1.9 2020/08/17 20:19:49 cwen Exp $
|
|
|
|
COMMENT = system information tool written in bash
|
|
CATEGORIES = sysutils misc
|
|
|
|
GH_ACCOUNT = dylanaraps
|
|
GH_PROJECT = neofetch
|
|
GH_TAGNAME = 7.1.0
|
|
|
|
MAINTAINER = Charlene Wendling <cwen@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
RUN_DEPENDS = shells/bash
|
|
|
|
NO_BUILD = Yes
|
|
|
|
NO_TEST = Yes
|
|
|
|
PKG_ARCH = *
|
|
|
|
# A little nicer than the upstream install target.
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/neofetch ${PREFIX}/bin/neofetch
|
|
${INSTALL_MAN} ${WRKSRC}/neofetch.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|