mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 14:26:38 +02:00
34 lines
979 B
Text
34 lines
979 B
Text
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer:
|
|
pkgname=py3-django-suit
|
|
_realname=django-suit
|
|
pkgver=0.2.28
|
|
pkgrel=8
|
|
pkgdesc="Modern theme for Django admin interface"
|
|
options="!check" # No testsuite
|
|
url="https://djangosuit.com/"
|
|
arch="noarch"
|
|
license="CC-BY-NC-3.0"
|
|
depends="python3"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/d/$_realname/$_realname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_realname-$pkgver
|
|
|
|
replaces="py-django-suit" # Backwards compatibility
|
|
provides="py-django-suit=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
5ed7c6fdc0c3a14c4b525338b9f0c6e2bc296bd06f20cc5b262dcef23711212a5d84d9f3bee610895ca31ac7b547c793177871023a254f0ccbb8ec3bca22b933 django-suit-0.2.28.tar.gz
|
|
"
|