summaryrefslogtreecommitdiff
path: root/jupyterhub
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-05-25 12:50:04 +0200
committerErich Eckner <git@eckner.net>2016-05-25 12:51:15 +0200
commit290f8d4b28e4003cc8c921d58a6173c064dd0d05 (patch)
treef341592bfb6f91d33d201016b6dd5dd3b04d0f0e /jupyterhub
parent5b8628cf40ad2abb85f73bad9d808cc92f171ada (diff)
downloadarchlinuxewe.git.save-290f8d4b28e4003cc8c921d58a6173c064dd0d05.tar.xz
jupyterhub neu
Diffstat (limited to 'jupyterhub')
-rw-r--r--jupyterhub/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/jupyterhub/PKGBUILD b/jupyterhub/PKGBUILD
new file mode 100644
index 00000000..439f58f0
--- /dev/null
+++ b/jupyterhub/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Erich Eckner <arch at eckner dot net>
+
+pkgname=jupyterhub
+pkgver=0.4.1
+pkgrel=1
+pkgdesc="Multi-user server for Jupyter notebooks "
+url="http://jupyter.org/"
+arch=(any)
+license=('BSD')
+depends=('python-tornado' 'python-jinja' 'ipython' 'python-pamela' 'python-sqlalchemy' 'python-requests' 'nodejs-configurable-http-proxy')
+makedepends=('bower' 'npm')
+source=("https://github.com/jupyter/jupyterhub/archive/${pkgver}.tar.gz")
+md5sums=('9dcbec101e4e28065aafbac3672eb391')
+
+build() {
+ cd "${srcdir}/jupyterhub-$pkgver"
+ python setup.py build
+}
+
+package() {
+ cd "${srcdir}/jupyterhub-$pkgver"
+ python setup.py install --root="${pkgdir}"
+ install -Dm644 COPYING.md "${pkgdir}"/usr/share/licenses/$pkgname/COPYING.md
+}
+