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