# Maintainer: Michael Helmling # Maintainer: Carlos Aznarán # Contributor: Antonio Rojas _base=pytaglib pkgname=python-${_base} pkgver=1.5.0 pkgrel=4 pkgdesc="Python audio tagging library" arch=(x86_64) url="https://github.com/supermihi/${_base}" license=(GPL3) depends=(python taglib) makedepends=(python-build python-installer python-setuptools python-wheel) checkdepends=(python-pytest) source=(${url}/archive/v${pkgver}.tar.gz) sha512sums=('1be63e285980b140312aa780a56edf59467ad05aa49b3679d4140a856d07950842e9563ae7783010084e6d82c89b8776bbac94101326f67d041faa410f756556') build() { cd ${_base}-${pkgver} python -m build --wheel --skip-dependency-check --no-isolation } check() { cd ${_base}-${pkgver} python -m venv --system-site-packages test-env test-env/bin/python -m installer --optimize=1 dist/*.whl chmod +x test-env/bin/pyprinttags test-env/bin/python -m pytest tests } package() { cd ${_base}-${pkgver} PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m installer --optimize=1 --destdir="${pkgdir}" dist/*.whl # https://github.com/FFY00/python-install/pull/6 chmod +x ${pkgdir}/usr/bin/pyprinttags # Symlink license file local site_packages=$(python -c "import site; print(site.getsitepackages()[0])") install -d ${pkgdir}/usr/share/licenses/${pkgname} ln -s "${site_packages}/${_base}-${pkgver}.dist-info/LICENSE" \ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }