New port: sysutils/backupuser

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>
This commit is contained in:
Tobias Kortkamp 2019-01-25 08:44:22 +00:00
parent a21e13d1f1
commit b3ad0f7a25
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=491136
4 changed files with 37 additions and 0 deletions

View file

@ -72,6 +72,7 @@
SUBDIR += backuppc
SUBDIR += backuppc-devel
SUBDIR += backuppc4
SUBDIR += backupuser
SUBDIR += bacula-bat
SUBDIR += bacula-client
SUBDIR += bacula-client-static

View file

@ -0,0 +1,27 @@
# $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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1514653592
SHA256 (backupuser-1.0.tar.gz) = f33fdc33fd5e98e5fd2fbc517bfeddd83e1851d9f4e0348827c69de98ee07f53
SIZE (backupuser-1.0.tar.gz) = 5338

View file

@ -0,0 +1,6 @@
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