cvsdist 3634b33
Summary: A library for parsing XML.
cvsdist 3634b33
Name: expat
cvsdist 3634b33
Version: 1.95.1
cvsdist 3634b33
Release: 1
cvsdist 3634b33
Group: System Environment/Libraries
cvsdist 3634b33
Source: http://download.sourceforge.net/expat/expat-%{version}.tar.gz
cvsdist 3634b33
URL: http://sourceforge.net/projects/expat
cvsdist 3634b33
License: MIT/X Consortium
cvsdist 3634b33
Prefix: %{_prefix}
cvsdist 3634b33
BuildRoot: %{_tmppath}/%{name}-root
cvsdist 3634b33
cvsdist 3634b33
%description
cvsdist 3634b33
This is expat, the C library for parsing XML, written by James Clark. Expat
cvsdist 3634b33
is a stream oriented XML parser. This means that you register handlers with
cvsdist 3634b33
the parser prior to starting the parse. These handlers are called when the
cvsdist 3634b33
parser discovers the associated structures in the document being parsed. A
cvsdist 3634b33
start tag is an example of the kind of structures for which you may
cvsdist 3634b33
register handlers.
cvsdist 3634b33
cvsdist 3634b33
%package devel
cvsdist 3634b33
Summary: Libraries and include files to develop XML applications with expat.
cvsdist 3634b33
Group: Development/Libraries
cvsdist 3634b33
PreReq: expat = %{version}
cvsdist 3634b33
cvsdist 3634b33
%description devel
cvsdist 3634b33
The expat-devel package contains the libraries, include files and documentation
cvsdist 3634b33
to develop XML applications with expat.
cvsdist 3634b33
cvsdist 3634b33
%prep
cvsdist 3634b33
%setup -q
cvsdist 3634b33
cvsdist 3634b33
%build
cvsdist 3634b33
cvsdist 3634b33
%configure
cvsdist 3634b33
make
cvsdist 3634b33
cvsdist 3634b33
%install
cvsdist 3634b33
rm -rf ${RPM_BUILD_ROOT}
cvsdist 3634b33
cvsdist 3634b33
%makeinstall
cvsdist 3634b33
cvsdist 3634b33
%clean
cvsdist 3634b33
rm -rf ${RPM_BUILD_ROOT}
cvsdist 3634b33
cvsdist 3634b33
%post -p /sbin/ldconfig
cvsdist 3634b33
cvsdist 3634b33
%postun -p /sbin/ldconfig
cvsdist 3634b33
cvsdist 3634b33
%files
cvsdist 3634b33
%defattr(-,root,root)
cvsdist 3634b33
%doc README
cvsdist 3634b33
%{_libdir}/lib*.so.*
cvsdist 3634b33
cvsdist 3634b33
%files devel
cvsdist 3634b33
%defattr(-,root,root)
cvsdist 3634b33
%doc doc examples
cvsdist 3634b33
%{_libdir}/lib*.a
cvsdist 3634b33
%{_libdir}/lib*.la
cvsdist 3634b33
%{_libdir}/lib*.so
cvsdist 3634b33
%{_includedir}/*.h
cvsdist 3634b33
cvsdist 3634b33
%changelog
cvsdist 3634b33
* Tue Oct 24 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 3634b33
- update to 1.95.1
cvsdist 3634b33
cvsdist 3634b33
* Sun Oct  8 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 3634b33
- Create.