c9aa0b7340
2021.2.26 Pass 4388 tests. Squeeze axes of LSM series by default (breaking). Add option to preserve single dimensions when reading from series (WIP). Do not allow appending to OME-TIFF files. Fix reading STK files without name attribute in metadata. Make TIFF constants multi-thread safe and pickleable. Add detection of NDTiffStorage MajorVersion to read_micromanager_metadata. Support ScanImage v4 files in read_scanimage_metadata (not tested).
25 lines
707 B
Makefile
25 lines
707 B
Makefile
# $NetBSD: Makefile,v 1.3 2021/03/04 14:05:49 adam Exp $
|
|
|
|
DISTNAME= tifffile-2021.2.26
|
|
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:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} lsm2bin lsm2bin-${PYVERSSUFFIX} && \
|
|
${MV} tiffcomment tiffcomment-${PYVERSSUFFIX} && \
|
|
${MV} tifffile tifffile-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../math/py-numpy/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|