1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-15 20:25:17 +03:00
aports/testing/mkdocs-gitbook/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
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
2023-01-10 04:19:31 +01:00

25 lines
735 B
Text

# Contributor: David Demelier <markand@malikania.fr>
# Maintainer: David Demelier <markand@malikania.fr>
pkgname=mkdocs-gitbook
pkgver=0.0.1
pkgrel=2
pkgdesc="GitBook theme for mkdocs"
url="https://gitlab.com/lramage/mkdocs-gitbook-theme"
arch="noarch"
license="Apache-2.0"
depends="python3"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/m/mkdocs-gitbook/mkdocs-gitbook-$pkgver.tar.gz"
options="!check" # No tests.
build() {
python3 setup.py build
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
2cc5b23f83fa27157d0a5f9bc788a3bdd351cb60cbe6cd5d4f76c54483e8805ad225879c026e5a0de72485446ca6a7b49277087cfb56e9abe983eb086de85b83 mkdocs-gitbook-0.0.1.tar.gz
"