-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpat.spec
131 lines (105 loc) · 3.66 KB
/
expat.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
%define version 2.2.5
%define release 1
Summary: Expat is an XML 1.0 parser written in C.
Name: expat
Version: %{version}
Release: %{release}
License: MIT/X
Group: Utilities/parsers
URL: http://www.libexpat.org/
Source: https://downloads.sourceforge.net/project/expat/expat/%{version}/expat-%{version}.tar.bz2
BuildRoot: /var/tmp/%{name}-buildroot
%description
Expat is an XML 1.0 parser written in C by James Clark. It aims to be
fully conforming. It is not a validating XML parser.
%prep
%setup
%build
./configure
make lib xmlwf
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr/bin
mkdir -p $RPM_BUILD_ROOT/usr/lib
mkdir -p $RPM_BUILD_ROOT/usr/include
make install DESTDIR=$RPM_BUILD_ROOT prefix=/usr
install -D xmlwf/xmlwf $RPM_BUILD_ROOT/usr/bin/xmlwf
%files
%doc COPYING README.md doc/reference.html doc/style.css doc/*.png
/usr/bin/xmlwf
/usr/lib
/usr/include/expat.h
/usr/include/expat_config.h
/usr/include/expat_external.h
/usr/share/doc/expat/AUTHORS
/usr/share/doc/expat/changelog
/usr/share/man/man1/xmlwf.1.gz
%changelog
* Tue Oct 31 2017 Sebastian Pipping <[email protected]>
[Release 2.2.5-1]
- Update for the 2.2.5 release.
* Sat Aug 19 2017 Sebastian Pipping <[email protected]>
[Release 2.2.4-1]
- Update for the 2.2.4 release.
* Wed Aug 2 2017 Sebastian Pipping <[email protected]>
[Release 2.2.3-1]
- Update for the 2.2.3 release.
* Wed Jul 12 2017 Sebastian Pipping <[email protected]>
[Release 2.2.2-1]
- Update for the 2.2.2 release.
* Sat Jun 17 2017 Sebastian Pipping <[email protected]>
[Release 2.2.1-1]
- Update for the 2.2.1 release.
* Tue Jun 21 2016 Sebastian Pipping <[email protected]>
[Release 2.2.0-1]
- Update for the 2.2.0 release.
* Wed Mar 2 2016 Sebastian Pipping <[email protected]>
[Release 2.1.1-1]
- Update for the 2.1.1 release.
* Sat Mar 3 2012 Karl Waclawek <[email protected]>
[Release 2.1.0-1]
- Update for the 2.1.0 release.
* Sun Nov 26 2006 Karl Waclawek <[email protected]>
[Release 2.0.1-1]
- Update for the 2.0.1 release.
* Fri Jul 16 2004 Fred L. Drake, Jr. <[email protected]>
[Release 1.95.8-1]
- Update for the 1.95.8 release.
- Add the expat_external.h header to the installed files.
* Tue Oct 21 2003 Fred L. Drake, Jr. <[email protected]>
- Update list of documentation files; we missed a .png file in the
previous release.
* Mon Oct 20 2003 Fred L. Drake, Jr. <[email protected]>
[Release 1.95.7-1]
- Updated for the 1.95.7 release.
* Sat Jan 25 2003 Fred L. Drake, Jr. <[email protected]>
[Release 1.95.6-1]
- Updated for the 1.95.6 release.
* Wed Sep 4 2002 Fred L. Drake, Jr. <[email protected]>
[Release 1.95.5-1]
- Updated for the 1.95.5 release.
- Updated URL for Expat home page to point to www.libexpat.org.
- Added "Valid XHTML 1.0" icon to the installed documentation.
* Sat Jun 29 2002 Fred L. Drake, Jr. <[email protected]>
[Release 1.95.4-1]
- Updated for the 1.95.4 release.
* Fri May 17 2002 Fred L. Drake, Jr. <[email protected]>
[Release 1.95.3-1]
- Updated for the 1.95.3 release.
- Added xmlwf man page to the list of files.
* Wed Jul 25 2001 Fred L. Drake, Jr. <[email protected]>
[Release 1.95.2-1]
- Updated for the 1.95.2 release.
* Sun Feb 18 2001 Sean Reifschneider <[email protected]>
[Release 1.95.1-1tummy]
- Updated to 1.95.1 release.
- Removed the "/usr/include/expat" directory for headers, as it now uses
"expat.h" instead of "xmlparser.h".
* Thu Jan 25 2001 Sean Reifschneider <[email protected]>
[Release 1.1-3tummy]
- Moved xmlparse.h into "/usr/include/expat" directory to prevent conflict
with w3c-libwww-devel package.
* Wed Sep 6 2000 Sean Reifschneider <[email protected]>
- Modified to install into /usr.
- Modified to use RPM_BUILD_ROOT instead of writing directly to install
location.