Files
MSYS2-packages/python-typogrify/PKGBUILD
Christoph Reiter 0566eff63a Remove makedepends on python-wheel everywhere
setuptools no longer needs it for building wheels since v70.1.0
2024-08-16 14:03:27 +02:00

42 lines
1.0 KiB
Bash

# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
pkgname=python-typogrify
_pyname=typogrify
pkgver=2.0.7
pkgrel=3
pkgdesc='filters to make caring about typography on the web a bit easier'
arch=('any')
url='https://github.com/mintchaos/typogrify'
license=('spdx:BSD-3-Clause')
depends=('python' 'python-smartypants')
makedepends=(
'python-setuptools'
'python-build'
'python-installer'
)
source=("https://pypi.python.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz"
jinja-3.1.patch)
sha256sums=('8be4668cda434163ce229d87ca273a11922cb1614cb359970b7dc96eed13cb38'
'bda1b57207e46d3d399b830e603493505bcbc1414342b823d81345a4ac8a4cfb')
prepare() {
cd "${_pyname}-${pkgver}"
patch -Np1 -i ../jinja-3.1.patch
}
build() {
cd "${_pyname}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${_pyname}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}