diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-06-10 23:05:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-06-15 07:37:42 +0700 |
commit | c645edd97724580f6636dd864408343c933191b5 (patch) | |
tree | 110bddb707821671222db8ee7446af2e424acdfb /libraries | |
parent | 38c0ac39602b6a3525b976053fd79df87af185f1 (diff) |
libraries/xalan: Removed (not well maintained).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/xalan/README | 5 | ||||
-rw-r--r-- | libraries/xalan/slack-desc | 19 | ||||
-rw-r--r-- | libraries/xalan/xalan.SlackBuild | 64 | ||||
-rw-r--r-- | libraries/xalan/xalan.info | 10 |
4 files changed, 0 insertions, 98 deletions
diff --git a/libraries/xalan/README b/libraries/xalan/README deleted file mode 100644 index 10ec3a7e218e..000000000000 --- a/libraries/xalan/README +++ /dev/null @@ -1,5 +0,0 @@ -xalan (apache-ant XML and XSLT libraries) - -Apache Xalan Project is a collaborative software development project -dedicated to providing robust, full-featured, commercial-quality, -and freely available XSLT support on a wide variety of platforms. diff --git a/libraries/xalan/slack-desc b/libraries/xalan/slack-desc deleted file mode 100644 index af61201d5ef8..000000000000 --- a/libraries/xalan/slack-desc +++ /dev/null @@ -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------------------------------------------------------| -xalan: xalan (apache-ant XML and XSLT libraries) -xalan: -xalan: Apache Xalan Project is a collaborative software development project -xalan: dedicated to providing robust, full-featured, commercial-quality, -xalan: and freely available XSLT support on a wide variety of platforms. -xalan: -xalan: Homepage http://xalan.apache.org/ -xalan: -xalan: -xalan: -xalan: diff --git a/libraries/xalan/xalan.SlackBuild b/libraries/xalan/xalan.SlackBuild deleted file mode 100644 index 1a53e540fe96..000000000000 --- a/libraries/xalan/xalan.SlackBuild +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash - -# Slackware build script for xalan -# Written by Vincent Batts, vbatts@hashbangbash.com - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=xalan -VERSION=${VERSION:-2.7.1} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -DVER=j_$(echo $VERSION | tr . _) -ANTHOME=/usr/share/ant - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# 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} - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf ${PRGNAM}-${DVER} -tar xvf $CWD/${PRGNAM}-${DVER}-bin-2jars.tar.gz -cd ${PRGNAM}-${DVER} -chown -R root:root . - -mkdir -p $PKG/$ANTHOME/lib/ $PKG/usr/share/java -cp $PRGNAM.jar serializer.jar xsltc.jar $PKG/$ANTHOME/lib/ -cd $PKG/usr/share/java - ln -s ../../../$ANTHOME/lib/$PRGNAM.jar - ln -s ../../../$ANTHOME/lib/serializer.jar - ln -s ../../../$ANTHOME/lib/xsltc.jar -cd - - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -zip -9 -r $PKG/usr/doc/$PRGNAM-$VERSION/docs.zip docs/ -cp -a samples/ readme.html LICENSE.txt NOTICE.txt $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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/libraries/xalan/xalan.info b/libraries/xalan/xalan.info deleted file mode 100644 index 32084db41223..000000000000 --- a/libraries/xalan/xalan.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="xalan" -VERSION="2.7.1" -HOMEPAGE="http://xalan.apache.org/" -DOWNLOAD="https://archive.apache.org/dist/xml/xalan-j/xalan-j_2_7_1-bin-2jars.tar.gz" -MD5SUM="3ccda39bcd08b780436dfd2f22fb23d5" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="apache-ant zulu-openjdk8" -MAINTAINER="Vincent Batts" -EMAIL="vbatts@hashbangbash.com" |