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