db4156810e
------------------------------------- v3.8.0 - Additional Intel GPU checks - Gentoo release check (whether it's stable/testing/experimental) - Chromebrew detection for Chrome OS pkgs - OpenBSD fixes - Manjaro logo updated - Added Fux logo - Enable easily addable custom lines through customlines() function - Line wrapping with '-w' command line option - Fix issue with extra space and host variable - Improvements to OS X font detection - Fixed package count, shell detection and colors on NetBSD - Added pkgsrc support for OS X - Use new NixOS logo - Use new KaOS logo - PCLinuxOS logo added - pomf host removed (does not exist anymore) - Display the package count, resolution, GPU and OS version on Haiku - Display release version and package count on TinyCore Linux - Display exact release version on Windows 10 - Use modern logo on Windows 10 and Windows 8 - Support for Blackbox on Windows - Improve BusyBox shell detection - Added detection for Trinity/TWin, chromeos-wm, FLWM, howm, sway, LXQt and Deepin [DEs/WMs] - Added detection for Alpine, BunsenLabs, Chrome OS, Chromium OS, Devuan, Fux, GrombyangOS, KDE neon, Kogaion, Mer, Msys, Netrunner, Oracle Linux, PCLinuxOS, Qubes OS, Parrot Security, Pardus, Red Star OS, ROSA, SailfishOS, SparkyLinux, SteamOS, SUSE Linux Enterprise and SwagArch (pkgsrc changes) - Drop patch, upstream now included.
35 lines
971 B
Makefile
35 lines
971 B
Makefile
# $NetBSD: Makefile,v 1.2 2017/05/07 02:02:10 mef Exp $
|
|
|
|
DISTNAME= screenFetch-3.8.0
|
|
PKGNAME= ${DISTNAME:tl}
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=KittyKatt/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/KittyKatt/screenFetch/
|
|
COMMENT= Fetches system/theme information in terminal for screenshots
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
USE_TOOLS+= bash:run
|
|
USE_LANGUAGES= # none
|
|
|
|
REPLACE_BASH+= screenfetch-dev
|
|
|
|
NO_BUILD= yes
|
|
|
|
# These are optional, however the purpose of screenfetch is to make use of them
|
|
DEPENDS+= curl-[0-9]*:../../www/curl
|
|
DEPENDS+= scrot-[0-9]*:../../graphics/scrot
|
|
|
|
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${RUN} cd ${WRKSRC} && ${INSTALL_SCRIPT} screenfetch-dev \
|
|
${DESTDIR}${PREFIX}/bin/screenfetch
|
|
${RUN} cd ${WRKSRC} && ${INSTALL_DATA} screenfetch.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/screenfetch.1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|