blob: 7bf3ea50b8e74354c32310e254c09c4d60975bc9 (
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
|
# Maintainer: Henry-Joseph Audéoud <h.audeoud@gmail.com>
# Contributor: getzze <getzze at gmail dot com>
pkgname=jupyter-nbextension-rise
_name=rise
pkgver=5.7.1
pkgrel=1
pkgdesc="Live Reveal.js Jupyter/IPython Slideshow Extension"
arch=(any)
url="https://github.com/damianavila/RISE"
license=('BSD')
conflicts=('python-rise')
depends=('python' 'jupyter-notebook')
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
sha256sums=('641db777cb907bf5e6dc053098d7fd213813fa9a946542e52b900eb7095289a6')
package() {
cd "$srcdir/rise-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
install -D -m644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Copy the files in static/, including reveal.js/*
# this is incorrectly implemented in setup.py, so several files are missing
local _python3="$(readlink /usr/bin/python3)"
local _site_packages="$pkgdir/usr/lib/$_python3/site-packages"
env PYTHONPATH="$_site_packages:$PYTHONPATH" \
JUPYTER_PATH="$pkgdir/usr/"\
jupyter-nbextension install rise --py --prefix="$pkgdir/usr/"
# No need to call `jupyter nbextension install rise`, it is handled in setup.py
# however, change the path from /usr/etc to /etc
mv "$pkgdir/"{usr/etc,etc}
}
|