| # Contributor/Maintainer: Sarah Ottinger <schalaalexiazeal@gmail.com> |
| # Maintainer: Miloš Komarčević <miloskomarcevic@aim.com> |
| |
| _realname=tifffile |
| pkgbase=mingw-w64-python-${_realname} |
| pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") |
| pkgver=2021.6.14 |
| pkgrel=1 |
| pkgdesc="Read and write image data from and to TIFF files (mingw-w64)" |
| arch=('any') |
| mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64') |
| url='https://github.com/cgohlke/tifffile' |
| license=('BSD-3-Clause') |
| depends=("${MINGW_PACKAGE_PREFIX}-python-numpy") |
| makedepends=("${MINGW_PACKAGE_PREFIX}-python-setuptools") |
| optdepends=("${MINGW_PACKAGE_PREFIX}-python-imagecodecs: required only for encoding or decoding LZW, JPEG, etc." |
| "${MINGW_PACKAGE_PREFIX}-python-matplotlib: required only for plotting" |
| "${MINGW_PACKAGE_PREFIX}-python-lxml: required only for validating and printing XML") |
| options=('staticlibs' 'strip' '!debug') |
| source=("${_realname}-${pkgver}.tar.gz"::"https://github.com/cgohlke/${_realname}/archive/v${pkgver}.tar.gz") |
| sha256sums=('7e3afc79ed52d3530ca167f8fe3da9d703d041913ef88b02a45dbd5c5a2f8cbf') |
| |
| prepare() { |
| cd "${srcdir}" |
| |
| rm -rf python-build-${MINGW_ARCH} || true |
| cp -r "${_realname}-${pkgver}" "python-build-${MINGW_ARCH}" |
| } |
| |
| build() { |
| msg "Python build for ${MINGW_ARCH}" |
| cd "${srcdir}/python-build-${MINGW_ARCH}" |
| ${MINGW_PREFIX}/bin/python setup.py build |
| } |
| |
| check() { |
| msg "Python test for ${MINGW_ARCH}" |
| cd "${srcdir}/python-build-${MINGW_ARCH}" |
| ${MINGW_PREFIX}/bin/python setup.py check --strict |
| } |
| |
| package() { |
| cd "${srcdir}/python-build-${MINGW_ARCH}" |
| MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \ |
| ${MINGW_PREFIX}/bin/python setup.py install --prefix=${MINGW_PREFIX} \ |
| --root="${pkgdir}" --optimize=1 --skip-build |
| |
| install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE" |
| |
| # remove shebang line |
| for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*-script.py; do |
| sed -e '1 { s/^#!.*$// }' -i ${_f} |
| done |
| } |