PKGBUILDs/community/jupyterlab/PKGBUILD

38 lines
1.1 KiB
Bash
Raw Normal View History

2019-11-17 16:52:49 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - export --max-old-space-size option to fix 32-bit FTBFS
pkgname=jupyterlab
_pipname=jupyterlab
2021-05-19 02:06:42 +00:00
pkgver=3.0.16
2021-04-08 18:03:51 +00:00
pkgrel=1
2019-11-17 16:52:49 +00:00
pkgdesc="JupyterLab computational environment"
arch=(any)
url="https://github.com/jupyterlab/jupyterlab"
license=(custom)
2021-02-23 14:58:49 +00:00
makedepends=(python-setuptools)
depends=(python-jupyterlab_server python-jupyter_packaging jupyter-nbclassic nodejs)
2020-12-24 16:39:41 +00:00
optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support')
2019-11-17 16:52:49 +00:00
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
2021-05-19 02:06:42 +00:00
sha256sums=('7ad4fbe1f6d38255869410fd151a8b15692a663ca97c0a8146b3f5c40e275c23')
2020-03-29 23:58:22 +00:00
2021-03-24 18:18:47 +00:00
prepare() {
cd $pkgname-$pkgver
sed -e 's|jupyter_packaging~=0.7.3|jupyter_packaging|' -i setup.py
}
2019-11-17 16:52:49 +00:00
build() {
cd $pkgname-$pkgver
export NODE_OPTIONS=--max-old-space-size=1024
python setup.py build
}
package() {
cd $pkgname-$pkgver
python setup.py install --root="$pkgdir" --optimize=1
mv "$pkgdir"/usr/etc "$pkgdir"
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}