* Ports that were pinned to a deprecated version of Go (1.23 or older) have been unpinned. * Ports that were pinned to a still-supported version of Go (1.24 or newer) have been converted to requesting that as their minimum Go version. * Ports that had been forcibly deprecated for pinning an expired Go version have been undeprecated.
24 lines
490 B
Makefile
24 lines
490 B
Makefile
PORTNAME= wallhaven-cli
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.0.5
|
|
PORTREVISION= 7
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= CLI for wallhaven to browse wallpapers in terminal
|
|
WWW= https://github.com/r3tr0ananas/wallhaven-cli
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= chafa:graphics/chafa \
|
|
fzf:textproc/fzf
|
|
|
|
USES= go:modules
|
|
|
|
GO_MODULE= github.com/r3tr0ananas/wallhaven-cli/v2
|
|
GO_TARGET= ./wallhaven
|
|
PLIST_FILES= bin/wallhaven
|
|
|
|
.include <bsd.port.mk>
|