mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
system/mathML2dtd: Added (W3 MathML2 DTD).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
745a7b999d
commit
4e56e6c92c
6 changed files with 220 additions and 0 deletions
12
system/mathML2dtd/README
Normal file
12
system/mathML2dtd/README
Normal file
|
@ -0,0 +1,12 @@
|
|||
'mathML2dtd' is a group of shell scripts, SGML catalog
|
||||
and required files used for creating a removable
|
||||
SlackBuild package for W3 MathML2 DTD.
|
||||
|
||||
After the installation of W3 MathML2 DTD /etc/xml/catalog
|
||||
file will be created if it DOESN'T exist otherwise it will
|
||||
be updated.
|
||||
|
||||
After uninstallation of the 'mathML2dtd' package
|
||||
/etc/xml/catalog and /usr/share/xml/ will be reset
|
||||
automatically to the original state defined by the
|
||||
'linuxdoc-tools'
|
86
system/mathML2dtd/doinst.sh
Normal file
86
system/mathML2dtd/doinst.sh
Normal file
|
@ -0,0 +1,86 @@
|
|||
catalog_filepath=etc/xml/catalog
|
||||
|
||||
if [ ! -e etc/xml ]; then
|
||||
mkdir -p etc/xml
|
||||
xmlcatalog --noout --create $catalog_filepath
|
||||
fi
|
||||
|
||||
# DocBook V4.x Entries
|
||||
xmlcatalog --noout --add 'delegatePublic' \
|
||||
"-//OASIS//ENTITIES DocBook XML" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegatePublic' \
|
||||
"-//OASIS//DTD DocBook XML" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateSystem' \
|
||||
"http://www.oasis-open.org/docbook/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateURI' \
|
||||
"http://www.oasis-open.org/docbook/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateSystem' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.1.2/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateURI' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.1.2/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateSystem' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateURI' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateSystem' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.3/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateURI' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.3/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateSystem' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.4/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'delegateURI' \
|
||||
"http://www.oasis-open.org/docbook/xml/4.4/" \
|
||||
"file:///etc/xml/docbook" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'rewriteSystem' \
|
||||
"http://cdn.docbook.org/release/xsl-nons/1.79.2" \
|
||||
"file://usr/share/xml/docbook/xsl-stylesheets-1.79.2" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'rewriteURI' \
|
||||
"http://cdn.docbook.org/release/xsl-nons/1.79.2" \
|
||||
"file://usr/share/xml/docbook/xsl-stylesheets-1.79.2" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'rewriteSystem' \
|
||||
"http://cdn.docbook.org/release/xsl-nons/current" \
|
||||
"file://usr/share/xml/docbook/xsl-stylesheets-1.79.2" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'rewriteURI' \
|
||||
"http://cdn.docbook.org/release/xsl-nons/current/" \
|
||||
"file://usr/share/xml/docbook/xsl-stylesheets-1.79.2" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'rewriteSystem' \
|
||||
"http://docbook.sourceforge.net/release/xsl/current" \
|
||||
"/usr/share/xml/docbook/xsl-stylesheets-1.79.2" \
|
||||
$catalog_filepath
|
||||
xmlcatalog --noout --add 'rewriteURI' \
|
||||
"http://docbook.sourceforge.net/release/xsl/current" \
|
||||
"/usr/share/xml/docbook/xsl-stylesheets-1.79.2" \
|
||||
$catalog_filepath
|
||||
|
||||
# 'mathML2dtd' catalog Entry
|
||||
xmlcatalog --noout --add 'nextCatalog' \
|
||||
'' \
|
||||
"file:///usr/share/xml/schema/w3c/mathml2/catalog_mathML2.xml" \
|
||||
$catalog_filepath
|
6
system/mathML2dtd/douninst.sh
Normal file
6
system/mathML2dtd/douninst.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
catalog_filepath=etc/xml/catalog
|
||||
|
||||
# Remove 'mathML2dtd' catalog Entry
|
||||
xmlcatalog --noout --del \
|
||||
"file:///usr/share/xml/schema/w3c/mathml2/catalog_mathML2.xml" \
|
||||
$catalog_filepath
|
87
system/mathML2dtd/mathML2dtd.SlackBuild
Normal file
87
system/mathML2dtd/mathML2dtd.SlackBuild
Normal file
|
@ -0,0 +1,87 @@
|
|||
#!/bin/bash
|
||||
|
||||
# mathML2dtd.SlackBuild - SlackBuild script for creating a package of MathML2 DTD
|
||||
# Copyright © 2022 Necib ÇAPAR <necipcapar@gmail.com>
|
||||
|
||||
# This file is part of mathML2dtd
|
||||
|
||||
# mathML2dtd is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
# mathML2dtd is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=mathML2dtd
|
||||
VERSION=${VERSION:-1.0.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
# create installation directory tree for the original files
|
||||
mkdir --parents $PKG/usr/share/xml/schema/w3c
|
||||
cp --archive $TMP/$PRGNAM-$VERSION/mathml2 $PKG/usr/share/xml/schema/w3c/
|
||||
cp --archive $TMP/$PRGNAM-$VERSION/catalog_mathML2.xml $PKG/usr/share/xml/schema/w3c/mathml2
|
||||
cp --archive $TMP/$PRGNAM-$VERSION/catalog_mathML2 $PKG/usr/share/xml/schema/w3c/mathml2
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
cat $CWD/douninst.sh > $PKG/install/douninst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|
10
system/mathML2dtd/mathML2dtd.info
Normal file
10
system/mathML2dtd/mathML2dtd.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="mathML2dtd"
|
||||
VERSION="1.0.0"
|
||||
HOMEPAGE="https://github.com/N-Tek/mathML2dtd"
|
||||
DOWNLOAD="https://github.com/N-Tek/mathML2dtd/releases/download/v1.0.0/mathML2dtd-1.0.0.tar.gz"
|
||||
MD5SUM="b91c3e186f3524f5ec75f18f1fd9c055"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="%README%"
|
||||
MAINTAINER="Necib ÇAPAR"
|
||||
EMAIL="necipcapar@gmail.com"
|
19
system/mathML2dtd/slack-desc
Normal file
19
system/mathML2dtd/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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------------------------------------------------------|
|
||||
mathML2dtd: mathML2dtd (W3 MathML2 DTD)
|
||||
mathML2dtd:
|
||||
mathML2dtd: w3 mathml2 dtd with additional required files
|
||||
mathML2dtd:
|
||||
mathML2dtd:
|
||||
mathML2dtd:
|
||||
mathML2dtd:
|
||||
mathML2dtd:
|
||||
mathML2dtd:
|
||||
mathML2dtd:
|
||||
mathML2dtd: https://www.w3.org/Math/DTD/mathml2.tgz
|
Loading…
Reference in a new issue