mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
33d79436a0
+ Optimize floating-point calculations + Improved performance and efficiency + Removed awk(1) as a dependency + Provide a setvar function for non-FreeBSD /bin/sh variants Differential Review: https://reviews.freebsd.org/D1239 Submitted by: dteske (maintainer) Approved by: shurd (mentor)
24 lines
470 B
Makefile
24 lines
470 B
Makefile
# Created by: Devin Teske <dteske@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zfs-stats-lite
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://druidbsd.sourceforge.net/download/
|
|
|
|
MAINTAINER= dteske@FreeBSD.org
|
|
COMMENT= Display human-readable ZFS statistics
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
CONFLICTS_INSTALL= zfs-stats-[0-9]*
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/zfs-stats
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/zfs-stats ${STAGEDIR}${PREFIX}/bin/zfs-stats
|
|
|
|
.include <bsd.port.mk>
|