mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
b3ad0f7a25
backupuser is a command line utility, which automates the creation of backups of a user's home directory. An accompanying utility lets a user verify the integrity of files on another storage device. Special backup options exist for the root user. WWW: http://www.olivermahmoudi.com/programming/backup-strategies PR: 224735 Submitted by: Oliver Mahmoudi <fbsd@olivermahmoudi.com>
28 lines
607 B
Makefile
28 lines
607 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= backupuser
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.olivermahmoudi.com/files/
|
|
|
|
MAINTAINER= fbsd@olivermahmoudi.com
|
|
COMMENT= User Backup Utility
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/backupuser \
|
|
bin/bu_check_files \
|
|
man/man1/backupuser.1.gz \
|
|
man/man1/bu_check_files.1.gz
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${PORTNAME} bu_check_files \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.1 bu_check_files.1 \
|
|
${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|