mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 05:57:14 +02:00
29 lines
813 B
Text
29 lines
813 B
Text
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=mkdocs-cinder
|
|
pkgver=1.2.0
|
|
pkgrel=5
|
|
pkgdesc="clean responsive theme for mkdocs"
|
|
url="https://github.com/chrissimpkins/cinder"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/m/mkdocs-cinder/mkdocs-cinder-$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="
|
|
29bfabab23980c2595a182618b21530d50a3b6bf0cb4a08e63888a0ce372e897c3752c8778b92f31c4ed5f71214021311817f9d1718e0984660f9717a8a432a2 mkdocs-cinder-1.2.0.tar.gz
|
|
"
|