mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
29 lines
600 B
Makefile
29 lines
600 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
|
|
USE_XZ= yes
|
|
|
|
WRKSRC= ${WRKDIR}/danzfs
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/danzfs
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|