diff --git a/.SRCINFO b/.SRCINFO index fdfd527891ae..5685d03f131d 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = ipython-mathjax pkgdesc = mathjax files for usage in the ipython notebook - pkgver = 2 + pkgver = 3 pkgrel = 1 url = http://ipython.org/ipython-doc/stable/install/install.html#mathjax arch = any diff --git a/PKGBUILD b/PKGBUILD index e4d590fdf69d..78ef66d0eb2f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ -# Maintainer: Thomas Weißschuh +# Maintainer: Thomas Weißschuh pkgname=ipython-mathjax -pkgver=2 +pkgver=3 pkgrel=1 pkgdesc="mathjax files for usage in the ipython notebook" url='http://ipython.org/ipython-doc/stable/install/install.html#mathjax' @@ -12,9 +12,9 @@ optdepends=('ipython: for use with ipython' 'ipython2: for use with ipython2') package() { - install -d "${pkgdir}/usr/lib/python3.3/site-packages/IPython/html/static" + install -d "${pkgdir}/usr/lib/python3.4/site-packages/IPython/html/static" install -d "${pkgdir}/usr/lib/python2.7/site-packages/IPython/html/static" - ln -s "/usr/share/mathjax" "${pkgdir}/usr/lib/python3.3/site-packages/IPython/html/static/mathjax" + ln -s "/usr/share/mathjax" "${pkgdir}/usr/lib/python3.4/site-packages/IPython/html/static/mathjax" ln -s "/usr/share/mathjax" "${pkgdir}/usr/lib/python2.7/site-packages/IPython/html/static/mathjax" }