blob: 5b247ea01cee019d3baf8121de0d49b72213212d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
_pyname=stwcs
pkgname=python-${_pyname}-doc
pkgver=1.7.4
pkgrel=1
pkgdesc="Documentation for STWCS"
arch=('any')
url="https://stwcs.readthedocs.io"
license=('BSD-3-Clause')
makedepends=("python-${_pyname}=${pkgver}"
'python-sphinx'
'python-sphinx_rtd_theme'
'texlive-latexextra') # latex.fmt: -latex; anyfontsize.sty: latexextra
#source=("https://github.com/spacetelescope/${_pyname}/archive/${pkgver}.tar.gz")
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('daec58de6921b543ac8d54cd51a60fed')
build() {
cd ${srcdir}/${_pyname}-${pkgver}/doc
make html
}
package() {
cd ${srcdir}/${_pyname}-${pkgver}/doc/build
install -d -m755 "${pkgdir}/usr/share/doc/${pkgname%-doc}"
cp -a html "${pkgdir}/usr/share/doc/${pkgname%-doc}"
}
|