mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
added community/jupyterlab
This commit is contained in:
parent
1a9ae28986
commit
993ba1b50a
1 changed files with 32 additions and 0 deletions
32
community/jupyterlab/PKGBUILD
Normal file
32
community/jupyterlab/PKGBUILD
Normal file
|
@ -0,0 +1,32 @@
|
|||
# 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=1.2.3
|
||||
pkgrel=2
|
||||
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=('2188a9bcaaf0b6a68ff9098a481f37ece8231634b862fd3c9adedc466aac79f2')
|
||||
|
||||
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
|
||||
}
|
Loading…
Reference in a new issue