freebsd-ports/sysutils/zfs-periodic/Makefile
Michael Scheidell 46fa18cb60 - fix weekly/periodic script. should have been 'weekly' was 'daily'
PR:		ports/162496
Submitted by:	basarevych@gmail.com
Approved by:	peter@pean.org (maintainer), gabor (mentor, implicit)
2012-01-06 21:58:57 +00:00

52 lines
1.2 KiB
Makefile

# New ports collection makefile for: zfs-periodic
# Date created: 8 November 2010
# Whom: Peter Ankerstal <peter@pean.org>
#
# $FreeBSD$
#
PORTNAME= zfs-periodic
PORTVERSION= 1.0
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://www.pean.org/zfs-periodic/
MAINTAINER= peter@pean.org
COMMENT= Simple way of maitaining zfs snapshots using the periodic system
NO_BUILD= yes
PERIODIC_DIRS= etc/periodic/hourly etc/periodic/daily \
etc/periodic/weekly etc/periodic/monthly \
etc/periodic
PERIODIC_FILES= etc/periodic/hourly/000.zfs-snapshot \
etc/periodic/daily/000.zfs-snapshot \
etc/periodic/weekly/000.zfs-snapshot \
etc/periodic/monthly/000.zfs-snapshot \
etc/periodic/monthly/998.zfs-scrub
PLIST_FILES= ${PERIODIC_FILES} bin/zfs-snapshot
PLIST_DIRSTRY= ${PERIODIC_DIRS}
post-patch:
.for _file in ${PERIODIC_FILES}
@${REINPLACE_CMD} -e "s|/etc/periodic/zfs-snapshot|${PREFIX}/bin/zfs-snapshot|" \
${WRKSRC}/${_file}
.endfor
do-install:
@${INSTALL_SCRIPT} ${WRKSRC}/etc/periodic/zfs-snapshot ${PREFIX}/bin
.for _dir in ${PERIODIC_DIRS}
@${MKDIR} ${PREFIX}/${_dir}
.endfor
.for _file in ${PERIODIC_FILES}
@${INSTALL_SCRIPT} ${WRKSRC}/${_file} ${PREFIX}/${_file}
.endfor
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>