blob: d0c116d63b9099e8530b8d5c2f5108de259b60ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.11 2014/12/31 13:57:27 wiz Exp $
VERSION= 0.2.1
DISTNAME= fuse-python-${VERSION}
PKGNAME= ${PYPKGPREFIX}-fuse-bindings-${VERSION}
CATEGORIES= filesystems python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse/fuse-python}/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://sourceforge.net/apps/mediawiki/fuse/index.php?title=FusePython
COMMENT= Python bindings for FUSE and refuse
LICENSE= gnu-lgpl-v2.1
PYDISTUTILSPKG= yes
PY_PATCHLIST= yes
USE_TOOLS+= pkg-config
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.2.1
INSTALLATION_DIRS= share/examples/fuse-python
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/example/hello.py \
${DESTDIR}${PREFIX}/share/examples/fuse-python/
${INSTALL_SCRIPT} ${WRKSRC}/example/xmp.py \
${DESTDIR}${PREFIX}/share/examples/fuse-python/
.include "../../lang/python/egg.mk"
.include "../../mk/fuse.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|