]> git.pld-linux.org Git - packages/expat.git/blob - expat.spec
- updated to 1.95.2,
[packages/expat.git] / expat.spec
1 Summary:        XML 1.0 parser
2 Summary(pl):    XML 1.0 parser
3 Name:           expat
4 Version:        1.95.2
5 Release:        1
6 License:        Thai Open Source Software Center Ltd (distributable)
7 Group:          Applications/Publishing/XML
8 Group(de):      Applikationen/Publizieren/XML
9 Group(pl):      Aplikacje/Publikowanie/XML
10 Source0:        ftp://download.sourceforge.net/pub/sourceforge/expat/%{name}-%{version}.tar.gz
11 Patch0:         %{name}-ac_fix.patch
12 URL:            http://expat.sourceforge.net/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libtool
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 Expat is an XML parser written in C. It aims to be fully conforming.
20 It is currently not a validating XML parser.
21
22 %description -l pl
23 Expat to parser XML napisany w jêzyku C.
24
25 %package devel
26 Summary:        Expat header files
27 Summary(pl):    Pliki nag³ówkowe do biblioteki expat
28 Group:          Development/Libraries
29 Group(de):      Entwicklung/Libraries
30 Group(fr):      Development/Librairies
31 Group(pl):      Programowanie/Biblioteki
32 Requires:       %{name} = %{version}
33
34 %description devel
35 Expat header files.
36
37 %description -l pl devel
38 Pliki nag³ówkowe do biblioteki expat.
39
40 %package static
41 Summary:        Expat static library
42 Summary(pl):    Biblioteka statyczna expat
43 Group:          Development/Libraries
44 Group(de):      Entwicklung/Libraries
45 Group(fr):      Development/Librairies
46 Group(pl):      Programowanie/Biblioteki
47 Requires:       %{name} = %{version}
48
49 %description static
50 Expat static library.
51
52 %description -l pl static
53 Bioblioteka statyczna expat.
54
55 %prep
56 %setup -q
57 %patch0 -p1
58
59 %build
60 libtoolize --copy --force
61 aclocal
62 autoconf
63 %configure
64 %{__make}
65
66 %install
67 rm -rf $RPM_BUILD_ROOT
68
69 %{__make} install DESTDIR=$RPM_BUILD_ROOT
70
71 gzip -9nf Changes COPYING README
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %clean
77 rm -rf $RPM_BUILD_ROOT
78
79 %files
80 %defattr(644,root,root,755)
81 %attr(755,root,root) %{_libdir}/lib*.so.*.*
82
83 %files devel
84 %defattr(644,root,root,755)
85 %doc *.gz doc/*
86 %attr(755,root,root) %{_libdir}/lib*.so
87 %attr(755,root,root) %{_libdir}/lib*.la
88 %{_includedir}/*
89
90 %files static
91 %defattr(644,root,root,755)
92 %{_libdir}/lib*.a
This page took 0.084923 seconds and 4 git commands to generate.