summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 892944c45e464820e09d98d8d1409166e2911308 (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
38
39
40
41
42
43
44
# Maintainer: Daniel J. B. Clarke <u8sand at gmail dot com>

pkgname=jupyter-nodejs-git
_pkgname=jupyter-nodejs
_install="/usr/share/jupyter/kernels/nodejs/"
pkgver=1.1.0
pkgrel=1
license=("MIT")
pkgdesc="A node.js kernel for jupyter/ipython"
options=(debug !strip)
makedepends=('npm' 'nodejs')
depends=('jupyter' 'nodejs')
arch=('x86_64')
url='https://github.com/notablemind/jupyter-nodejs'
source=("install.patch"
        "${pkgname%-*}::git+https://github.com/notablemind/jupyter-nodejs.git")
sha256sums=('2e62a325d4abd0a54c979f5592a9bb3debd966abaea85531946cbdccdd87283c'
            'SKIP')
provides=("jupyter-nodejs")
conflicts=("jupyter-nodejs")

prepare() {
  cd "${srcdir}/${_pkgname}"
  patch -Np1 -i "${srcdir}/install.patch"
}

build() {
  cd "${srcdir}/${_pkgname}"
  npm install
  npm run build
  npm run build-ext
}

package() {
  cd "${srcdir}/${_pkgname}"

  INSTALL_PATH="${pkgdir}/${_install}" \
  RUNTIME_PATH="${_install}" \
    node install.js

  install -dm755 "${pkgdir}/${_install}"
  cp -R node_modules build "${pkgdir}/${_install}"
  install -Dm644 config.js LICENSE package.json "${pkgdir}/${_install}"
}