mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
29 lines
1 KiB
Text
29 lines
1 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-flask-babel
|
|
_pkgname=Flask-Babel
|
|
pkgver=0.12.2
|
|
pkgrel=3
|
|
pkgdesc="Flask i18n/l10n support"
|
|
options="!check" # No testsuite on PYPI tarball, GitHub tarball are outdated
|
|
url="https://github.com/python-babel/flask-babel"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3 py3-flask py3-jinja2 py3-babel"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-tz"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-flask-babel" # Backwards compatibility
|
|
provides="py-flask-babel=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="c43bf5cf6c66e3a8a52298f52bd6300cf0b0c53a1f0fb5862b1bcf8a9800ea0e043c9f85125bb9eb5c281a3c0583c63f0f9653792204883a6f82080547b37104 Flask-Babel-0.12.2.tar.gz"
|