Magellan Linux

Contents of /trunk/extras/xerces2-j/xerces2-j-2.12.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31950 - (show annotations) (download)
Wed Jan 2 15:44:16 2019 UTC (5 years, 3 months ago) by niro
File size: 815 byte(s)
auto added: ver bump to 2.12.0-r1
1 # $Id$
2
3 PNAME="xerces2-j"
4 PVER="2.12.0"
5 PBUILD="r1"
6
7 PCAT="dev-java"
8
9 DEPEND=">= virtual/java"
10
11 DESCRIPTION="Xerces2-J is a validating XML parser written in a portable subset of Java."
12 HOMEPAGE="http://xml.apache.org/xerces2-j/"
13
14 SRCFILE="Xerces-J-bin.${PVER}.tar.gz"
15 SRCDIR="${BUILDDIR}/xerces-${PVER//./_}"
16
17 sminclude java
18
19 SRC_URI=(
20 http://www.apache.org/dist/xerces/j/binaries/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 UP2DATE="updatecmd http://www.apache.org/dist/xerces/j/binaries/ | grep 'tar.gz' | sed -n -e 's/.*Xerces-J-bin\.\(.*\)\.tar.*/\1/;$ p'"
25
26 src_prepare()
27 {
28 munpack ${SRCFILE} || die
29 cd ${SRCDIR}
30 rm xercesSamples.jar || die
31 }
32
33 src_install()
34 {
35 cd ${SRCDIR} || die
36 minstalljar resolver.jar serializer.jar xercesImpl.jar xml-apis.jar || die
37 minstalldocs LICENSE NOTICE Readme.html || die
38 }