# Maintainer: Antonio Rojas # ALARM: Kevin Mihelich # - export --max-old-space-size option to fix 32-bit FTBFS pkgname=jupyterlab _pipname=jupyterlab pkgver=3.0.5 pkgrel=1 pkgdesc="JupyterLab computational environment" arch=(any) url="https://github.com/jupyterlab/jupyterlab" license=(custom) makedepends=(python-setuptools python-jupyter_packaging) depends=(python-jupyterlab_server jupyter-nbclassic nodejs) optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets support') source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz) sha256sums=('ea75d43d9a054e9192b78ae1eefa72270818d1d787ec21f19db1a92d5cc8db35') 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 }