mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 14:26:38 +02:00
29 lines
823 B
Text
29 lines
823 B
Text
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=mkdocs-gitbook
|
|
pkgver=0.0.1
|
|
pkgrel=5
|
|
pkgdesc="GitBook theme for mkdocs"
|
|
url="https://gitlab.com/lramage/mkdocs-gitbook-theme"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/m/mkdocs-gitbook/mkdocs-gitbook-$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="
|
|
2cc5b23f83fa27157d0a5f9bc788a3bdd351cb60cbe6cd5d4f76c54483e8805ad225879c026e5a0de72485446ca6a7b49277087cfb56e9abe983eb086de85b83 mkdocs-gitbook-0.0.1.tar.gz
|
|
"
|