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