a5b3d04981
- Stage support - No need for gmake - Tighten COMMMENT - Add license - (Re)assign maintainership to submitter PR: ports/182427 Submitted by: Shane Kinney <modsix@gmail.com>
21 lines
534 B
Makefile
21 lines
534 B
Makefile
# Created by: shane@freebsdhackers.net aka modsix@gmail.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= destroy
|
|
PORTVERSION= 20130926
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.mod6.net/destroy/ \
|
|
http://www.kinneysoft.com/destroy/
|
|
|
|
MAINTAINER= modsix@gmail.com
|
|
COMMENT= Securely destroy files on the hard disk
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
|
|
PLIST_FILES= bin/destroy man/man1/destroy.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/destroy ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/destroy.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|