2004-09-09 04:37:12 +00:00
|
|
|
|
Summary: A library for parsing XML.
|
|
|
|
|
Name: expat
|
2004-09-09 04:37:53 +00:00
|
|
|
|
Version: 1.95.2
|
|
|
|
|
Release: 2
|
2004-09-09 04:37:12 +00:00
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
Source: http://download.sourceforge.net/expat/expat-%{version}.tar.gz
|
|
|
|
|
URL: http://sourceforge.net/projects/expat
|
2004-09-09 04:37:53 +00:00
|
|
|
|
License: BSD
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
2004-09-09 04:37:12 +00:00
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This is expat, the C library for parsing XML, written by James Clark. Expat
|
|
|
|
|
is a stream oriented XML parser. This means that you register handlers with
|
|
|
|
|
the parser prior to starting the parse. These handlers are called when the
|
|
|
|
|
parser discovers the associated structures in the document being parsed. A
|
|
|
|
|
start tag is an example of the kind of structures for which you may
|
|
|
|
|
register handlers.
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Libraries and include files to develop XML applications with expat.
|
|
|
|
|
Group: Development/Libraries
|
2004-09-09 04:37:53 +00:00
|
|
|
|
Requires: expat = %{version}
|
2004-09-09 04:37:12 +00:00
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
The expat-devel package contains the libraries, include files and documentation
|
|
|
|
|
to develop XML applications with expat.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
%configure
|
|
|
|
|
make
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
|
|
%makeinstall
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%doc README
|
|
|
|
|
%{_libdir}/lib*.so.*
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%doc doc examples
|
|
|
|
|
%{_libdir}/lib*.a
|
|
|
|
|
%{_libdir}/lib*.la
|
|
|
|
|
%{_libdir}/lib*.so
|
|
|
|
|
%{_includedir}/*.h
|
|
|
|
|
|
|
|
|
|
%changelog
|
2004-09-09 04:37:53 +00:00
|
|
|
|
* Fri Mar 22 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- Change a prereq in -devel on main package to a req
|
|
|
|
|
- License from MIT/X11 to BSD
|
|
|
|
|
|
|
|
|
|
* Mon Mar 13 2002 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- 1.95.2
|
|
|
|
|
|
2004-09-09 04:37:40 +00:00
|
|
|
|
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- Bump release + rebuild.
|
|
|
|
|
|
2004-09-09 04:37:12 +00:00
|
|
|
|
* Tue Oct 24 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
|
- update to 1.95.1
|
|
|
|
|
|
|
|
|
|
* Sun Oct 8 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
|
- Create.
|