OLD | NEW |
1 Summary: Library providing the GNOME XSLT engine | 1 Summary: Library providing the GNOME XSLT engine |
2 Name: libxslt | 2 Name: libxslt |
3 Version: @VERSION@ | 3 Version: @VERSION@ |
4 Release: 1 | 4 Release: 1%{?dist}%{?extra_release} |
5 License: MIT | 5 License: MIT |
6 Group: Development/Libraries | 6 Group: Development/Libraries |
7 Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz | 7 Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz |
8 BuildRoot: %{_tmppath}/%{name}-%{version}-root | 8 BuildRoot: %{_tmppath}/%{name}-%{version}-root |
9 URL: http://xmlsoft.org/XSLT/ | 9 URL: http://xmlsoft.org/XSLT/ |
10 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@ | 10 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@ |
11 BuildRequires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@ | 11 BuildRequires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@ |
12 BuildRequires: python python-devel | 12 BuildRequires: python python-devel |
13 BuildRequires: libxml2-python | 13 BuildRequires: libxml2-python |
14 BuildRequires: libgcrypt-devel | 14 BuildRequires: libgcrypt-devel |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 %build | 59 %build |
60 %configure | 60 %configure |
61 make | 61 make |
62 gzip -9 ChangeLog | 62 gzip -9 ChangeLog |
63 | 63 |
64 %install | 64 %install |
65 rm -fr %{buildroot} | 65 rm -fr %{buildroot} |
66 | 66 |
67 %makeinstall | 67 %makeinstall |
68 | 68 |
69 rm -fr $RPM_BUILD_ROOT%{_libdir}/*.la \ | 69 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la |
70 $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/libxsltmod*a | 70 rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name}{,-python}-%{version} |
| 71 |
| 72 %check |
| 73 make check |
71 | 74 |
72 %clean | 75 %clean |
73 rm -fr %{buildroot} | 76 rm -fr %{buildroot} |
74 | 77 |
75 %post | 78 %post |
76 /sbin/ldconfig | 79 /sbin/ldconfig |
77 | 80 |
78 %postun | 81 %postun |
79 /sbin/ldconfig | 82 /sbin/ldconfig |
80 | 83 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 %{_libdir}/python*/site-packages/libxsltmod* | 124 %{_libdir}/python*/site-packages/libxsltmod* |
122 %doc python/TODO | 125 %doc python/TODO |
123 %doc python/libxsltclass.txt | 126 %doc python/libxsltclass.txt |
124 %doc python/tests/*.py | 127 %doc python/tests/*.py |
125 %doc python/tests/*.xml | 128 %doc python/tests/*.xml |
126 %doc python/tests/*.xsl | 129 %doc python/tests/*.xsl |
127 | 130 |
128 %changelog | 131 %changelog |
129 * @RELDATE@ Daniel Veillard <veillard@redhat.com> | 132 * @RELDATE@ Daniel Veillard <veillard@redhat.com> |
130 - upstream release @VERSION@ see http://xmlsoft.org/XSLT/news.html | 133 - upstream release @VERSION@ see http://xmlsoft.org/XSLT/news.html |
OLD | NEW |