blob: 80dbcdfc528ab7ebcadf3e9584347301a3b3ed91 (
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
33
34
35
36
37
38
|
# Maintainer: Astro Benzene <universebenzene at sina dot com>
_pyname=sphinx-copybutton
pkgname="python-${_pyname}-doc"
pkgver=0.5.1
pkgrel=1
pkgdesc="Documentation for Sphinx-Copybutton extension"
arch=('any')
url="https://sphinx-copybutton.readthedocs.io"
license=('MIT')
makedepends=("python-${_pyname}=${pkgver}" 'ipython' 'python-sphinx-examples' 'python-sphinx-book-theme' 'python-myst-nb')
source=("https://files.pythonhosted.org/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz"
"https://raw.githubusercontent.com/executablebooks/sphinx-copybutton/master/CHANGELOG.md")
md5sums=('2a359fae25a0a76158a0c9b3f77365d8'
'SKIP')
prepare() {
cd ${srcdir}/${_pyname}-${pkgver}/docs
# sed -i "/^exclude/s/\"\]/\",\ \"\*\*\.ipynb_checkpoints\"\]/" conf.py
sed -i "/language\ = /s/None/'en'/" conf.py
# sed -i "/^extensions/s/directive\"\]/directive\",\ \'IPython\.sphinxext\.ipython_console_highlighting\'\]/" conf.py
ln -rs ${srcdir}/CHANGELOG.md ${srcdir}/${_pyname}-${pkgver}
}
build() {
cd ${srcdir}/${_pyname}-${pkgver}/docs
make html
}
package() {
pkgdesc="Documentation for Sphinx-Copybutton extension"
cd ${srcdir}/${_pyname}-${pkgver}/docs/_build
install -D -m644 -t "${pkgdir}/usr/share/licenses/${pkgname}" ../../LICENSE
install -d -m755 "${pkgdir}/usr/share/doc/${pkgbase%-doc}"
cp -a html "${pkgdir}/usr/share/doc/${pkgbase%-doc}"
}
|