Attic is a deduplicating backup program. The main goal of Attic is to provide an efficient and secure way to backup data. The data deduplication technique used makes Attic suitable for daily backups since only changes are stored. TODO: Package finished, but no NetBSD support, so I can't test it. Import it if it works for you, or if you can add/ignore xattr support for NetBSD. -- wiz 20140810
25 lines
727 B
Makefile
25 lines
727 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/08/09 23:34:33 thomasklausner Exp $
|
|
|
|
DISTNAME= Attic-0.13
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/A/a/}
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://pypi.python.org/packages/source/A/Attic/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://attic-backup.org/
|
|
COMMENT= Deduplicating backup program
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-msgpack-[0-9]*:../../devel/py-msgpack
|
|
|
|
# missing xattr support; packages, but does not run
|
|
NOT_FOR_PLATFORM= NetBSD-*-*
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 26 27
|
|
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && mv attic attic${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|