| # Maintainer: Alexey Pavlov <alexpux@gmail.com> |
| |
| _realname=breathe |
| pkgbase=mingw-w64-python-${_realname} |
| pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") |
| provides=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") |
| conflicts=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") |
| replaces=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") |
| pkgver=4.30.0 |
| pkgrel=1 |
| pkgdesc="An extension to reStructuredText and Sphinx to be able to read and render Doxygen xml output (mingw-w64)" |
| arch=('any') |
| mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32') |
| url="https://breathe.readthedocs.org/en/latest/" |
| license=('BSD') |
| depends=("${MINGW_PACKAGE_PREFIX}-python" |
| "${MINGW_PACKAGE_PREFIX}-python-sphinx") |
| makedepends=("${MINGW_PACKAGE_PREFIX}-python-setuptools" |
| "${MINGW_PACKAGE_PREFIX}-python-six") |
| options=('staticlibs' 'strip' '!debug') |
| source=("${_realname}-${pkgver}.tar.gz"::"https://github.com/michaeljones/breathe/archive/v${pkgver}.tar.gz") |
| sha256sums=('540ca6d694aa2e194ba33265f58e0070465799f6feabb726d198cb039972a5a3') |
| |
| prepare() { |
| cd "${srcdir}" |
| rm -rf "python-build-${CARCH}" | true |
| cp -r "${_realname}-${pkgver}" "python-build-${CARCH}" |
| } |
| |
| build() { |
| msg "Python build for ${CARCH}" |
| cd "${srcdir}/python-build-${CARCH}" |
| ${MINGW_PREFIX}/bin/python setup.py build |
| } |
| |
| package() { |
| cd "${srcdir}/python-build-${CARCH}" |
| 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 |
| |
| local PREFIX_WIN=$(cygpath -wm ${MINGW_PREFIX}) |
| # fix python command in files |
| for _ff in ${pkgdir}${MINGW_PREFIX}/bin/*.py; do |
| sed -e "s|${PREFIX_WIN}|${MINGW_PREFIX}|g" -i ${_ff} |
| done |
| } |