ictree is a terminal-based program that takes a list of contents of directories and displays them in a pager similar to less where you can fold/unfold https://nikitaivanovv.github.io/ictree/ PR: 284245 Approved by: yuri@ (Mentor) Differential Revision: https://reviews.freebsd.org/D52439
23 lines
494 B
Makefile
23 lines
494 B
Makefile
PORTNAME= ictree
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.0.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://github.com/NikitaIvanovV/${PORTNAME}/releases/download/v${DISTVERSION}/
|
|
|
|
MAINTAINER= alven@FreeBSD.org
|
|
COMMENT= Like tree(1) but interactive
|
|
WWW= https://nikitaivanovv.github.io/ictree/ \
|
|
https://github.com/NikitaIvanovV/ictree/
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gmake
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
PLIST_FILES= bin/ictree \
|
|
share/man/man1/ictree.1.gz
|
|
|
|
.include <bsd.port.mk>
|