mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# 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
|
|
pkgver=2.1.0
|
|
pkgrel=1
|
|
pkgdesc="JupyterLab computational environment"
|
|
arch=(any)
|
|
url="https://github.com/jupyterlab/jupyterlab"
|
|
license=(custom)
|
|
makedepends=(python-setuptools)
|
|
depends=(jupyterlab_server nodejs)
|
|
optdepends=('npm: to install extensions')
|
|
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
|
|
sha256sums=('8c239aababf5baa0b3d36e375fddeb9fd96f3a9a24a8cda098d6a414f5bbdc81')
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
sed -e 's|~=|>=|' -i setup.py # Fix jupyterlab_server version
|
|
}
|
|
|
|
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
|
|
}
|