freebsd-ports/sysutils/clone/Makefile
Mathieu Arnold 8b4093cba5 Do not use post-stage. Use post-install instead.
The only reason to use post-stage is because the port needs to do
"things" at a later time, like some plist manipulation.
While there, fold post-install in do-install targets when they are
defined.

PR:		214780
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
2016-12-02 11:58:21 +00:00

22 lines
396 B
Makefile

# $FreeBSD$
PORTNAME= clone
PORTVERSION= 1.0.6
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= https://googledrive.com/host/0BzyUSAiURzitVGlOeXFsTW9XOVk/
MAINTAINER= cyclaero@gmail.com
COMMENT= File tree cloning tool
LICENSE= BSD2CLAUSE
USES= compiler:c11
PLIST_FILES= bin/clone \
man/man1/clone.1.gz
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/clone
.include <bsd.port.mk>