mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
31 lines
723 B
Makefile
31 lines
723 B
Makefile
# Created by: Anton Lysenok <bart@tapolsky.net.ua>
|
|
|
|
PORTNAME= clonehdd
|
|
PORTVERSION= 2.0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils perl5
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= jgh@FreeBSD.org
|
|
COMMENT= Tool for clone HDD on FreeBSD
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= perl5
|
|
USE_PERL5= run
|
|
PLIST_FILES= sbin/clonehdd man/man8/${PORTNAME}.8.gz
|
|
NO_BUILD= yes
|
|
PORTDOCS= CHANGES README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/clonehdd ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/clonehdd.8 ${STAGEDIR}${MAN8PREFIX}/man/man8
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|