summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4598c5cc3fcbd3b964714f0212a6c7f4315dd59d (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
39
40
41
42
43
44
# Maintainer: Marc Fehling <mafehling.git@gmail.com>
pkgname=('python-jupyter-book')
_pkgname=('jupyter-book')
pkgver='0.12.2'
pkgrel=1
pkgdesc="Build interactive, publication-quality documents from Jupyter Notebooks."
url="https://github.com/executablebooks/jupyter-book"
depends=('python'
  'python-setuptools'
  'python-click'
  'python-docutils'
  'python-jsonschema'
  'python-jupytext'
  'python-linkify-it-py'
  'python-myst-nb'
  'python-yaml'
  'python-sphinx'
  'python-sphinx-comments'
  'python-sphinx-copybutton'
  'python-sphinx-external-toc'
  'python-sphinx-jupyterbook-latex'
  'python-sphinx-panels'
  'python-sphinx-thebe'
  'python-sphinx-book-theme'
  'python-sphinx-togglebutton'
  'python-sphinxcontrib-bibtex'
  'python-sphinx-multitoc-numbering'
)
checkdepends=()
makedepends=()
license=('BSD')
arch=("any")  
source=("${_pkgname}-${pkgver}.tgz::https://github.com/executablebooks/${_pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('f3fccbea1f37098454fc92561593003ab7f12c73aa08612c7984237af2a8cb89')

build() {
    cd "${srcdir}/${_pkgname}-${pkgver}"
    python setup.py build
}

package() {
    cd "${srcdir}/${_pkgname}-${pkgver}"
    python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}