New port: sysutils/lsblk

Lists information about block devices in the system in a similar way
that util-linux's lsblk(8) does.

WWW: https://github.com/vermaden/scripts/blob/master/lsblk.sh

PR:		241056
Submitted by:	vermaden@interia.pl
This commit is contained in:
Koichiro Iwao 2019-10-08 01:02:48 +00:00
parent 862613c58a
commit ab24952d4f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=514019
4 changed files with 31 additions and 0 deletions

View File

@ -610,6 +610,7 @@
SUBDIR += logwatch
SUBDIR += lookat
SUBDIR += lr
SUBDIR += lsblk
SUBDIR += lscpu
SUBDIR += lsof
SUBDIR += lsop

23
sysutils/lsblk/Makefile Normal file
View File

@ -0,0 +1,23 @@
# $FreeBSD$
PORTNAME= lsblk
PORTVERSION= 1.0
#PORTREVISION= 0
CATEGORIES= sysutils
MASTER_SITES= https://github.com/vermaden/scripts/raw/master/release/
MAINTAINER= vermaden@interia.pl
COMMENT= Lists information about block devices in the system
LICENSE= BSD2CLAUSE
NO_BUILD= YES
NO_ARCH= YES
PLIST_FILES= sbin/${PORTNAME}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/lsblk.sh \
${STAGEDIR}${PREFIX}/sbin/${PORTNAME}
.include <bsd.port.mk>

3
sysutils/lsblk/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1570494909
SHA256 (lsblk-1.0.tar.gz) = ec6335ec27fd7ec1c56b2700d073c659c1704b816aa08c0f4d831d417dd2affb
SIZE (lsblk-1.0.tar.gz) = 4338

4
sysutils/lsblk/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
Lists information about block devices in the system in a similar way
that util-linux's lsblk(8) does.
WWW: https://github.com/vermaden/scripts/blob/master/lsblk.sh