mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-04 21:31:24 +02:00
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py3-jinja2
|
|
_pkgname=jinja
|
|
pkgver=2.8
|
|
pkgrel=1
|
|
pkgdesc="small but fast and easy to use stand-alone template engine written in pure python."
|
|
url="http://jinja.pocoo.org/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python3 py3-markupsafe"
|
|
makedepends="python3-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/pallets/$_pkgname/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --root=$pkgdir/ --optimize=1 || return 1
|
|
}
|
|
|
|
md5sums="4114200650d7630594e3bc70af23f59e py3-jinja2-2.8.tar.gz"
|
|
sha256sums="e270c55a2736f39eee67daba60be64fe0790ccdbbc47cdcc3ebda3017981081f py3-jinja2-2.8.tar.gz"
|
|
sha512sums="6ad1e0767f8e222f6a093a3e5d614f78e4d869d6971754b930f8b48fcea3fac5ae4b5e690c87d08485f5291525238e6f86a6e73d8aecaf6103bd71a62c792229 py3-jinja2-2.8.tar.gz"
|