117 lines
3.5 KiB
RPMSpec
117 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package xpp3
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define section free
|
|
%define oversion 1.1.3_8
|
|
Summary: XML Pull Parser
|
|
License: Apache-1.1
|
|
Group: Development/Libraries/Java
|
|
|
|
Name: xpp3
|
|
Version: 1.1.3.8
|
|
Release: 0
|
|
Url: http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html
|
|
Source0: http://www.extreme.indiana.edu/dist/java-repository/xpp3/distributions/xpp3-%{oversion}_src.tar.bz2
|
|
Requires: java >= 1.4.2
|
|
Requires: javapackages-tools
|
|
BuildRequires: ant >= 1.6
|
|
BuildRequires: javapackages-tools
|
|
BuildRequires: junit
|
|
BuildRequires: perl
|
|
BuildRequires: xml-commons-apis
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Xml Pull Parser 3rd Edition (XPP3) MXP1 is a new XmlPull parsing engine
|
|
that is based on ideas from XPP and in particular XPP2 but completely
|
|
revised and rewritten to take best advantage of latest JIT JVMs such as
|
|
Hotspot in JDK 1.4.
|
|
|
|
|
|
|
|
%package minimal
|
|
Summary: XML Pull Parser
|
|
Group: Development/Libraries/Java
|
|
|
|
%description minimal
|
|
Xml Pull Parser 3rd Edition (XPP3) MXP1 is a new XmlPull parsing engine
|
|
that is based on ideas from XPP and in particular XPP2 but completely
|
|
revised and rewritten to take best advantage of latest JIT JVMs such as
|
|
Hotspot in JDK 1.4.
|
|
|
|
|
|
|
|
%package javadoc
|
|
Summary: XML Pull Parser
|
|
Group: Development/Libraries/Java
|
|
|
|
%description javadoc
|
|
Xml Pull Parser 3rd Edition (XPP3) MXP1 is a new XmlPull parsing engine
|
|
that is based on ideas from XPP and in particular XPP2 but completely
|
|
revised and rewritten to take best advantage of latest JIT JVMs such as
|
|
Hotspot in JDK 1.4.
|
|
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{oversion}
|
|
# remove all binary libs
|
|
find . -name "*.jar" -exec rm -f {} \;
|
|
|
|
%build
|
|
export CLASSPATH=$(build-classpath xml-commons-apis junit)
|
|
ant xpp3 junit apidoc
|
|
|
|
%install
|
|
# jars
|
|
mkdir -p $RPM_BUILD_ROOT%{_javadir}
|
|
cp -p build/%{name}-%{oversion}.jar \
|
|
$RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
|
|
cp -p build/%{name}_min-%{oversion}.jar \
|
|
$RPM_BUILD_ROOT%{_javadir}/%{name}-minimal-%{version}.jar
|
|
cp -p build/%{name}_xpath-%{oversion}.jar \
|
|
$RPM_BUILD_ROOT%{_javadir}/%{name}-xpath-%{version}.jar
|
|
(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
|
|
# javadoc
|
|
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
|
cp -pr doc/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
|
rm -rf doc/{build.txt,api}
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(0644,root,root,0755)
|
|
%doc README.html LICENSE.txt doc/*
|
|
%{_javadir}/%{name}.jar
|
|
%{_javadir}/%{name}-%{version}.jar
|
|
%{_javadir}/%{name}-xpath.jar
|
|
%{_javadir}/%{name}-xpath-%{version}.jar
|
|
|
|
%files minimal
|
|
%defattr(0644,root,root,0755)
|
|
%{_javadir}/%{name}-minimal.jar
|
|
%{_javadir}/%{name}-minimal-%{version}.jar
|
|
|
|
%files javadoc
|
|
%defattr(0644,root,root,0755)
|
|
%{_javadocdir}/%{name}
|
|
|
|
%changelog
|