From 03784b79080f7cb118c2a0a93078c1b5f1003846 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sun, 15 Feb 2015 23:12:12 +0000 Subject: [PATCH] fix links --- .SRCINFO | 2 +- PKGBUILD | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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" }