blob: 2c5dcab97b4ff32a0e47fbde53c923bc9911ff31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=py3-sphinxcontrib-htmlhelp
_pyname=sphinxcontrib-htmlhelp
pkgver=1.0.2
pkgrel=0
pkgdesc="Sphinx htmlhelp extension"
url="https://pypi.python.org/pypi/sphinxcontrib-htmlhelp"
arch="noarch"
license="BSD-2-Clause"
depends="python3"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_pyname%${_pyname#?}}/$_pyname/$_pyname-$pkgver.tar.gz"
builddir="$srcdir"/$_pyname-$pkgver
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="2ee6c8a91095d8f87208ea509153edc5495b9ef78231add39880e133413b1fa95e152264e5c9dfe6afc89afcb107acacc241754e7b5d86137bb5c64a851702de sphinxcontrib-htmlhelp-1.0.2.tar.gz"
|