Files
MSYS2-packages/python-mako/PKGBUILD
2024-10-25 21:18:14 +02:00

51 lines
1.2 KiB
Bash

# Maintainer: Alexey Pavlov <alexpux@gmail.com>
_realname=mako
pkgbase="python-${_realname}"
pkgname=("python-${_realname}")
pkgver=1.3.6
pkgrel=1
pkgdesc="A super-fast templating language that borrows the best ideas from the existing templating languages"
arch=('any')
url="https://pypi.python.org/pypi/Mako"
msys2_repository_url="https://github.com/sqlalchemy/mako"
msys2_references=(
"pypi:Mako"
"cpe: cpe:/a:sqlalchemy:mako"
)
license=('MIT')
depends=("python-markupsafe"
"python-beaker")
makedepends=(
"python-build"
"python-installer"
"python-setuptools"
)
checkdepends=("python-pytest")
provides=("python3-${_realname}")
conflicts=("python3-${_realname}")
replaces=("python3-${_realname}")
options=('staticlibs')
source=("https://pypi.python.org/packages/source/m/mako/mako-${pkgver}.tar.gz")
sha256sums=('9ec3a1583713479fae654f83ed9fa8c9a4c16b7bb0daba0e6bbebff50c0d983d')
build() {
cd "${srcdir}/Mako-${pkgver}"
python -m build --wheel --skip-dependency-check --no-isolation
}
check() {
cd "${srcdir}/Mako-${pkgver}"
python -m pytest
}
package() {
cd "${srcdir}/Mako-${pkgver}"
python -m installer --destdir="${pkgdir}" dist/*.whl
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/python-${_realname}/COPYING"
}