mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 10:15:12 +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
28 lines
850 B
Text
28 lines
850 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py3-sphinx-inline-tabs
|
|
pkgver=2020.10.19b4
|
|
pkgrel=4
|
|
pkgdesc="Add inline tabbed content to your Sphinx documentation"
|
|
url="https://github.com/pradyunsg/sphinx-inline-tabs"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
py3-sphinx
|
|
python3
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/s/sphinx_inline_tabs/sphinx_inline_tabs-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/sphinx_inline_tabs-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="da9833993a90191675d9bbd30ee3ed193086a57b79fbf86aaba78c683afd85ac7115f8e32dd88fbd47fa16728b4af5db1c9b307e49b1d31fc0475556feb04695 sphinx_inline_tabs-2020.10.19b4.tar.gz"
|