void-packages/srcpkgs/python-jupyter/template
2015-12-02 14:15:45 +01:00

44 lines
1.2 KiB
Bash

# Template file for 'python-jupyter'
pkgname=python-jupyter
version=1.0.0
revision=1
noarch=yes
wrksrc="jupyter-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-setuptools"
depends="python-jupyter_notebook python-jupyter_console python-jupyter_nbconvert
python-ipython_ipykernel python-ipython_ipywidgets"
pycompile_module="jupyter.py"
short_desc="Jupyter metapackage (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="http://jupyter.org"
license="3-clause-BSD"
distfiles="${PYPI_SITE}/j/jupyter/jupyter-${version}.tar.gz"
checksum=d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f
if [ -z "$CROSS_BUILD" ]; then
depends+=" python-jupyter_qtconsole"
fi
post_install() {
vlicense LICENSE
}
python3.4-jupyter_package() {
noarch=yes
depends="python3.4-jupyter_notebook python3.4-jupyter_console
python3.4-jupyter_nbconvert python3.4-ipython_ipykernel
python3.4-ipython_ipywidgets"
if [ -z "$CROSS_BUILD" ]; then
depends+=" python3.4-jupyter_qtconsole"
fi
pycompile_version="3.4"
pycompile_module="jupyter.py"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
vlicense LICENSE
}
}