mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
26 lines
823 B
Text
26 lines
823 B
Text
# Contributor: Kaarle Ritvanen <kunkku@alpinelinux.org>
|
|
# Maintainer: Kaarle Ritvanen <kunkku@alpinelinux.org>
|
|
pkgname=py3-django-tables2
|
|
pkgver=2.5.2
|
|
pkgrel=0
|
|
pkgdesc="Table/data-grid framework for Django"
|
|
url="https://github.com/jieter/django-tables2"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3 py3-django"
|
|
makedepends="py3-setuptools"
|
|
options="!check" #no testsuite
|
|
source="https://files.pythonhosted.org/packages/source/d/django-tables2/django-tables2-$pkgver.tar.gz"
|
|
builddir="$srcdir"/django-tables2-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py --quiet build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py --quiet install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
015192af2998d91b56b02154385637d9f9f8a57c402a5e4e60d7e52a251b92f0e46fd976e60e00f0af52b14bdc44a87ac8cd9b4d5cb7331b4002a54eac9bc528 django-tables2-2.5.2.tar.gz
|
|
"
|