mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 23:47:37 -04:00
Add LICENSE_FILE. Changelog Between 3.8 and 3.9: - Improve searching for glabel(8) label. - Improve handling label from gpart(8) output. - Replace long Microsoft partition names to something reasonable. - Improve exFAT handling. - Improve size handling form md(4) disks. - Remove redundant spaces from labels. - Add TOTAL SYSTEM STORAGE for -d option. - Remove subshell for main devices check loop. PR: 283268 Approved by: submitter is maintainer
27 lines
696 B
Makefile
27 lines
696 B
Makefile
PORTNAME= lsblk
|
|
DISTVERSION= 3.9
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://github.com/vermaden/lsblk/raw/master/release/:source \
|
|
https://github.com/vermaden/lsblk/raw/master/:license
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:source \
|
|
LICENSE:license
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= vermaden@interia.pl
|
|
COMMENT= Lists information about block devices in the system
|
|
WWW= https://github.com/vermaden/lsblk
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${DISTDIR}/${DIST_SUBDIR}/LICENSE
|
|
|
|
NO_ARCH= YES
|
|
NO_BUILD= YES
|
|
|
|
PLIST_FILES= sbin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/lsblk.sh \
|
|
${STAGEDIR}${PREFIX}/sbin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|