mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 16:21:38 +01:00
30 lines
828 B
Plaintext
30 lines
828 B
Plaintext
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=mkdocs-cluster
|
|
pkgver=0.0.9
|
|
pkgrel=5
|
|
pkgdesc="another bootstrap theme for mkdocs"
|
|
url="https://gitlab.com/kaliko/mkdocs-cluster"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/m/mkdocs-cluster/mkdocs-cluster-$pkgver.tar.gz"
|
|
options="!check" # No tests.
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
0cbdf0fb96b1de85bb0474a607ca9a1242debdea977e1a2376bdb6566e746263df646b3a9e0f6da8465b760954649e87295c0a8e2b83b22b0cb2aa75e8fc6737 mkdocs-cluster-0.0.9.tar.gz
|
|
"
|