removed old libs
[TestXSLT.git] / libexpat / expat.spec
1 %define version 1.95.6
2 %define release 1
3
4 Summary: Expat is an XML 1.0 parser written in C.
5 Name: expat
6 Version: %{version}
7 Release: %{release}
8 Copyright: MIT/X
9 Group: Utilities/parsers
10 URL: http://www.libexpat.org/
11 Source: http://download.sourceforge.net/expat/expat-%{version}.tar.gz
12 BuildRoot: /var/tmp/%{name}-buildroot
13
14 %description
15 Expat is an XML 1.0 parser written in C by James Clark.  It aims to be
16 fully conforming. It is not a validating XML parser.
17
18 %prep
19 %setup
20
21 %build
22 ./configure
23 make lib xmlwf
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 mkdir -p $RPM_BUILD_ROOT/usr/bin
28 mkdir -p $RPM_BUILD_ROOT/usr/lib
29 mkdir -p $RPM_BUILD_ROOT/usr/include
30 make install prefix=$RPM_BUILD_ROOT/usr
31 install -D xmlwf/xmlwf $RPM_BUILD_ROOT/usr/bin/xmlwf
32
33 %files
34 %doc COPYING Changes MANIFEST README doc/reference.html doc/style.css doc/valid-xhtml10.png
35 /usr/bin/xmlwf
36 /usr/lib
37 /usr/include/expat.h
38 /usr/man/man1/xmlwf.1.gz
39
40 %changelog
41 * Sat Jan 25 2003 Fred L. Drake, Jr. <fdrake@acm.org>
42 [Release 1.95.6-1]
43 - Updated for the 1.95.6 release.
44
45 * Wed Sep 4 2002 Fred L. Drake, Jr. <fdrake@acm.org>
46 [Release 1.95.5-1]
47 - Updated for the 1.95.5 release.
48 - Updated URL for Expat home page to point to www.libexpat.org.
49 - Added "Valid XHTML 1.0" icon to the installed documentation.
50
51 * Sat Jun 29 2002 Fred L. Drake, Jr. <fdrake@acm.org>
52 [Release 1.95.4-1]
53 - Updated for the 1.95.4 release.
54
55 * Fri May 17 2002 Fred L. Drake, Jr. <fdrake@acm.org>
56 [Release 1.95.3-1]
57 - Updated for the 1.95.3 release.
58 - Added xmlwf man page to the list of files.
59
60 * Wed Jul 25 2001 Fred L. Drake, Jr. <fdrake@acm.org>
61 [Release 1.95.2-1]
62 - Updated for the 1.95.2 release.
63
64 * Sun Feb 18 2001 Sean Reifschneider <jafo-rpms@tummy.com>
65 [Release 1.95.1-1tummy]
66 - Updated to 1.95.1 release.
67 - Removed the "/usr/include/expat" directory for headers, as it now uses
68   "expat.h" instead of "xmlparser.h".
69
70 * Thu Jan 25 2001 Sean Reifschneider <jafo-rpms@tummy.com>
71 [Release 1.1-3tummy]
72 - Moved xmlparse.h into "/usr/include/expat" directory to prevent conflict
73   with w3c-libwww-devel package.
74
75 * Wed Sep 6 2000 Sean Reifschneider <jafo-rpms@tummy.com>
76 - Modified to install into /usr.
77 - Modified to use RPM_BUILD_ROOT instead of writing directly to install
78   location.