e6e380730d
Changes: Version 0.20.0 / 2020-03-23 * build system switched to carton for better dependency tracking * docker version available in `oetiker/znapzend:master` see README.md for details * `--recursive` option for run-once datasets. * `--inherited` allow run-once on datasets with only an inherited plan. * `--focedSnapshotSuffix=x` for non generated snapshot suffix in run-once. * `--nodelay` temporarily ignore delays in backup plans for speedy debugging. * new `--features` * `sendRaw` to NOT decrypt datasets prior to sending * `skipIntermediates` do not send intermediate snapshots * `lowmemRecurse` trade memory for speed when running large recursive jobs * `zfsGetType` speed up recursive dataset handling ... see znapzend manual page for details. * znapzendzetup supports `--features` too * new options for znapzendztatz: `--inherited` and `--setup`
29 lines
813 B
Makefile
29 lines
813 B
Makefile
# $NetBSD: Makefile,v 1.18 2020/04/29 20:15:33 wiedi Exp $
|
|
|
|
DISTNAME= znapzend-0.20.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=oetiker/}
|
|
|
|
MAINTAINER= wiedi@frubar.net
|
|
HOMEPAGE= https://github.com/oetiker/znapzend/
|
|
COMMENT= ZFS send/receive backup system
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= # none
|
|
USE_TOOLS+= perl gmake autoreconf autoconf automake
|
|
|
|
TEST_TARGET= check
|
|
|
|
DEPENDS+= p5-Mojolicious>=6.46:../../www/p5-Mojolicious
|
|
DEPENDS+= p5-Mojo-IOLoop-ForkCall>=0.17:../../devel/p5-Mojo-IOLoop-ForkCall
|
|
DEPENDS+= p5-Scalar-List-Utils>=1.45:../../devel/p5-Scalar-List-Utils
|
|
DEPENDS+= p5-Test-Harness>=3.35:../../devel/p5-Test-Harness
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && autoreconf --force --install --verbose --make
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|