mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
bbc8c4d740
Approved by: portmgr (not really, but touches unstaged ports)
24 lines
556 B
Makefile
24 lines
556 B
Makefile
# Created by: Andrey Zonov <andrey@zonov.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nvramtool
|
|
PORTVERSION= r6440
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.zonov.org/${PORTNAME}/
|
|
|
|
MAINTAINER= zont@FreeBSD.org
|
|
COMMENT= Utility for reading, writing the contents of CMOS memory
|
|
|
|
USES= gmake tar:bzip2
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
man/man8/${PORTNAME}.8.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/cli/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|