mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
libraries/xerces: Added to 12.2 repository
This commit is contained in:
parent
0048f71d8f
commit
448cb4d58b
4 changed files with 81 additions and 0 deletions
4
libraries/xerces/README
Normal file
4
libraries/xerces/README
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
xerces (apache-ant XML parsing libraries)
|
||||||
|
|
||||||
|
The Apache Xerces Project is responsible for Apache Licensed software
|
||||||
|
intended to create and maintain XML parsing and related software.
|
19
libraries/xerces/slack-desc
Normal file
19
libraries/xerces/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 ':'.
|
||||||
|
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
xerces: xerces ( apache-ant XML parsing libraries)
|
||||||
|
xerces:
|
||||||
|
xerces: The Apache Xerces Project is responsible for Apache Licensed software
|
||||||
|
xerces: intended to create and maintain XML parsing and related software.
|
||||||
|
xerces:
|
||||||
|
xerces: Homepage http://xerces.apache.org/
|
||||||
|
xerces:
|
||||||
|
xerces:
|
||||||
|
xerces:
|
||||||
|
xerces:
|
||||||
|
xerces:
|
50
libraries/xerces/xerces.SlackBuild
Normal file
50
libraries/xerces/xerces.SlackBuild
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for xalan
|
||||||
|
# Written by Vincent Batts, vbatts@hashbangbash.com
|
||||||
|
|
||||||
|
PRGNAM=xerces
|
||||||
|
VERSION=2.9.0
|
||||||
|
ARCH=${ARCH:-i486}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
DVER=$(echo $VERSION | tr . _)
|
||||||
|
ANTHOME=/usr/share/ant
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
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/Xerces-J-bin.${VERSION}.tar.gz
|
||||||
|
cd ${PRGNAM}-${DVER}
|
||||||
|
chown -R root:root .
|
||||||
|
|
||||||
|
mkdir -p $PKG/$ANTHOME/lib/ $PKG/usr/share/java
|
||||||
|
cp ${PRGNAM}Impl.jar ${PRGNAM}Samples.jar resolver.jar xml-apis.jar $PKG/$ANTHOME/lib/
|
||||||
|
cd $PKG/usr/share/java
|
||||||
|
ln -s ../../../$ANTHOME/lib/${PRGNAM}Impl.jar
|
||||||
|
ln -s ../../../$ANTHOME/lib/${PRGNAM}Samples.jar
|
||||||
|
ln -s ../../../$ANTHOME/lib/resolver.jar
|
||||||
|
ln -s ../../../$ANTHOME/lib/xml-apis.jar
|
||||||
|
cd -
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
zip -9 -r $PKG/usr/doc/$PRGNAM-$VERSION/docs.zip docs/
|
||||||
|
cp -a \
|
||||||
|
samples/ data/ Readme.html NOTICE* LICENSE* \
|
||||||
|
$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.tgz
|
8
libraries/xerces/xerces.info
Normal file
8
libraries/xerces/xerces.info
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
PRGNAM="xerces"
|
||||||
|
VERSION="2.9.0"
|
||||||
|
HOMEPAGE="http://xerces.apache.org/"
|
||||||
|
DOWNLOAD="http://apache.cs.utah.edu/xml/xerces-j/Xerces-J-bin.2.9.0.tar.gz"
|
||||||
|
MD5SUM="138f2d1cddd823281d5dfb700f2bd7d4"
|
||||||
|
MAINTAINER="Vincent Batts"
|
||||||
|
EMAIL="vbatts@hashbangbash.com"
|
||||||
|
APPROVED="rworkman"
|
Loading…
Reference in a new issue