mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
25 lines
743 B
Text
25 lines
743 B
Text
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=mkdocs-bootstrap4
|
|
pkgver=0.1.5
|
|
pkgrel=2
|
|
pkgdesc="bootstrap4 theme for mkdocs"
|
|
url="https://github.com/byrnereese/mkdocs-bootstrap4"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/m/mkdocs-bootstrap4/mkdocs-bootstrap4-$pkgver.tar.gz"
|
|
options="!check" # No tests.
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
a380ac24bd7dbf64344a78d4a897c5e77967a2f8a886d1f22ec343dc51ef99476fd2ad950526903cd9049a16691c7522f507571bb742cf4a17e4bd727d9523e5 mkdocs-bootstrap4-0.1.5.tar.gz
|
|
"
|