f49c41a045
Approved by: portmgr@ (blanket approval)
27 lines
610 B
Makefile
27 lines
610 B
Makefile
# Created by: Daniel Knaggs <knaggsy2000@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= danzfs
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= knaggsy2000@gmail.com
|
|
COMMENT= Provides a Python API for interacting with ZFS without using libzfs
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
USES= tar:xz
|
|
|
|
WRKSRC= ${WRKDIR}/danzfs
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/danzfs
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|