blob: fb5bd671516121d0625f242cc42885c5169552ec (
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
30
31
32
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
_pyname=gwcs
pkgname=python-${_pyname}-doc
pkgver=0.22.0
pkgrel=1
pkgdesc="Documentation for Python GWCS module"
arch=('any')
url="http://gwcs.readthedocs.io"
license=('BSD-3-Clause')
makedepends=("python-${_pyname}=${pkgver}"
'python-sphinx-astropy'
'python-sphinx-asdf'
'python-setuptools'
'python-matplotlib'
'graphviz')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz")
md5sums=('c933f74db1388a9761c435f917bcbd56')
build() {
cd ${srcdir}/${_pyname}-${pkgver}/docs
make html
}
package() {
cd ${srcdir}/${_pyname}-${pkgver}/docs/_build
install -d -m755 "${pkgdir}/usr/share/doc/${pkgname%-doc}"
cp -a html "${pkgdir}/usr/share/doc/${pkgname%-doc}"
install -D -m644 -t "${pkgdir}/usr/share/licenses/${pkgname}" ../../licenses/*
}
|