mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
30 lines
967 B
Text
30 lines
967 B
Text
# Contributor: Kaarle Ritvanen <kunkku@alpinelinux.org>
|
|
# Maintainer: Kaarle Ritvanen <kunkku@alpinelinux.org>
|
|
pkgname=py3-django-sorl-thumbnail
|
|
pkgver=12.9.0
|
|
pkgrel=0
|
|
pkgdesc="Thumbnails for Django"
|
|
options="!check" # Requires running django
|
|
url="https://github.com/jazzband/sorl-thumbnail"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="py3-django py3-pillow"
|
|
makedepends="py3-setuptools py3-setuptools_scm"
|
|
source="https://files.pythonhosted.org/packages/source/s/sorl-thumbnail/sorl-thumbnail-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir/sorl-thumbnail-$pkgver"
|
|
|
|
replaces="py-django-sorl-thumbnail" # Backwards compatibility
|
|
provides="py-django-sorl-thumbnail=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --root "$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
087901c4f0e8d2b72da53399c4c12976f4739e49652956bd4372776cf574c9c89da14ebfd981ebbd73412e21402b97afa06a1a9ce3783a25e91dceb413dbc6ea sorl-thumbnail-12.9.0.tar.gz
|
|
"
|