mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
6b5d1b5512
- add LICENSE - fix NO_OBJ warning
28 lines
521 B
Makefile
28 lines
521 B
Makefile
# Created by: Mikolaj Golub <to.my.trociny@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= devstat
|
|
PORTVERSION= 0.3.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= trociny@FreeBSD.org
|
|
COMMENT= Utility to display device statistics
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= trociny
|
|
|
|
MAKE_ENV+= NO_OBJ=yes
|
|
|
|
PLIST_FILES= bin/devstat \
|
|
man/man8/devstat.8.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/devstat ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/devstat.8 ${STAGEDIR}${PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|