blob: de1b68fb6b0365ff941be607caa21511db5d8c43 (
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
|
# $NetBSD: Makefile,v 1.9 2021/11/17 17:25:03 adam Exp $
DISTNAME= tifffile-2021.11.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= graphics python
MASTER_SITES= ${MASTER_SITE_PYPI:=t/tifffile/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://www.lfd.uci.edu/~gohlke/
COMMENT= Read and write TIFF(r) files
LICENSE= modified-bsd
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27 36
post-install:
.for bin in lsm2bin tiff2fsspec tiffcomment tifffile
cd ${DESTDIR}${PREFIX}/bin && \
${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
.endfor
.include "../../lang/python/egg.mk"
.include "../../math/py-numpy/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|