mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
development/ipython-mathjax: Removed (maintainer's request).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
0024a40b26
commit
ef4f189ac4
5 changed files with 0 additions and 117 deletions
|
@ -1,2 +0,0 @@
|
|||
MathJax is an open-source JavaScript display engine. This package makes MathJax
|
||||
routines available to locally-running instances of IPython's web notebook.
|
|
@ -1,10 +0,0 @@
|
|||
# Update the X font indexes:
|
||||
if [ -x /usr/bin/mkfontdir -o -x /usr/X11R6/bin/mkfontdir ]; then
|
||||
( cd /usr/share/fonts/OTF
|
||||
mkfontscale .
|
||||
mkfontdir .
|
||||
)
|
||||
fi
|
||||
if [ -x /usr/bin/fc-cache ]; then
|
||||
/usr/bin/fc-cache -f
|
||||
fi
|
|
@ -1,76 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# SlackBuild script for ipython-mathjax
|
||||
|
||||
# Copyright 2014 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are
|
||||
# met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=ipython-mathjax
|
||||
SRCNAM=MathJax
|
||||
VERSION=${VERSION:-2.5.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
rm -rf $TMP/$SRCNAM-$VERSION
|
||||
cd $TMP
|
||||
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz || tar xvf $CWD/$VERSION.tar.gz
|
||||
cd $SRCNAM-$VERSION
|
||||
chown -R root:root .
|
||||
|
||||
# get the IPython install location to creat the mathjax path
|
||||
MATHJAX_DIR=$(python -c "import IPython; dir(IPython); print IPython.__path__[0]")/html/static/mathjax
|
||||
|
||||
# change default config to disallow image fonts
|
||||
sed -i "s/imageFont:\"TeX\"/imageFont: null/" config/default.js
|
||||
|
||||
# install the STIX fonts
|
||||
mkdir -p $PKG/usr/share/fonts/OTF
|
||||
cp fonts/HTML-CSS/TeX/otf/* $PKG/usr/share/fonts/OTF
|
||||
|
||||
# install the required MathJax files
|
||||
mkdir -p $PKG/$MATHJAX_DIR
|
||||
cp -r config $PKG/$MATHJAX_DIR
|
||||
cp -r extensions $PKG/$MATHJAX_DIR
|
||||
cp -r images $PKG/$MATHJAX_DIR
|
||||
cp -r localization $PKG/$MATHJAX_DIR
|
||||
cp -r jax $PKG/$MATHJAX_DIR
|
||||
cp MathJax.js $PKG/$MATHJAX_DIR
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-noarch-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -1,10 +0,0 @@
|
|||
PRGNAM="ipython-mathjax"
|
||||
VERSION="2.5.1"
|
||||
HOMEPAGE="http://www.mathjax.org/"
|
||||
DOWNLOAD="https://github.com/mathjax/MathJax/archive/2.5.1.tar.gz"
|
||||
MD5SUM="a3e4b23cc1d62108b4682894dccb57ad"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="ipython"
|
||||
MAINTAINER="Benjamin Trigona-Harany"
|
||||
EMAIL="slackbuilds@jaxartes.net"
|
|
@ -1,19 +0,0 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
ipython-mathjax: ipython-mathjax (engine for displaying mathematics in IPython)
|
||||
ipython-mathjax:
|
||||
ipython-mathjax: MathJax is an open-source JavaScript display engine. This package
|
||||
ipython-mathjax: makes MathJax routines available to IPython.
|
||||
ipython-mathjax:
|
||||
ipython-mathjax:
|
||||
ipython-mathjax:
|
||||
ipython-mathjax:
|
||||
ipython-mathjax:
|
||||
ipython-mathjax:
|
||||
ipython-mathjax:
|
Loading…
Reference in a new issue