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