mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-01 17:01:34 +01:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
# Maintainer:
|
|
pkgname=py-django-sorl-thumbnail
|
|
pkgver=11.12.1b
|
|
pkgrel=0
|
|
pkgdesc="Thumbnails for Django"
|
|
url=https://github.com/mariocesar/sorl-thumbnail
|
|
arch=noarch
|
|
license=BSD
|
|
depends="py-django py-pillow"
|
|
makedepends=py-setuptools
|
|
source=https://pypi.python.org/packages/source/s/sorl-thumbnail/sorl-thumbnail-$pkgver.tar.gz
|
|
|
|
_builddir=$srcdir/sorl-thumbnail-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --root "$pkgdir"
|
|
}
|
|
|
|
md5sums="3e1392b79f7e4b6dc4046f5efc00297f sorl-thumbnail-11.12.1b.tar.gz"
|
|
sha256sums="6b309388f4c4fbbeec6813ccb3c321ba3245ef2b7de044ed7b26853ec75c05f3 sorl-thumbnail-11.12.1b.tar.gz"
|
|
sha512sums="6907ac0034139b6b30614238322916a002c6eaf9ff3e8d5bc6dd4e0c1e9ecbee95b9e7bc8fc12af97f04c1af035db974e24083acd3110f8a4f7f2f2e3d877e95 sorl-thumbnail-11.12.1b.tar.gz"
|