mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
594b3c0bf3
- Distfile extrapolated from upstream DeagonFlyBSD repository Approved By: gmarco@gufi.org (maintainer)
28 lines
655 B
Makefile
28 lines
655 B
Makefile
# Created by: Matthew Dillon <dillon@backplane.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cpdup
|
|
PORTVERSION= 1.20
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://utenti.gufi.org/~gmarco/files/distfiles/ \
|
|
https://www.madpilot.net/~mad/
|
|
|
|
MAINTAINER= gmarco@gufi.org
|
|
COMMENT= Comprehensive filesystem mirroring and backup program
|
|
|
|
LICENSE= BSD2CLAUSE # clarified by Matthew Dillon himself
|
|
|
|
USES= tar:xz
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
CFLAGS+= -D_ST_FLAGS_PRESENT_
|
|
|
|
PLIST_FILES= bin/cpdup man/man1/cpdup.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cpdup ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/cpdup.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|