mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
28 lines
918 B
Text
28 lines
918 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-flask-paginate
|
|
pkgver=0.8.1
|
|
pkgrel=0
|
|
pkgdesc="Simple paginate support for Flask"
|
|
url="https://pypi.python.org/pypi/Flask-paginate"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3 py3-flask"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/lixxu/flask-paginate/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir"/flask-paginate-$pkgver
|
|
|
|
replaces="py-flask-paginate" # Backwards compatibility
|
|
provides="py-flask-paginate=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
ca226c79bd944a19760048c1289b554ee048f4f8d1f231f5545423843b7c0616d52ee8024cc68628e11c5f528972897d7fdb1630f87063bbd0e40c4dacf91224 py3-flask-paginate-0.8.1.tar.gz
|
|
"
|