]> git.pld-linux.org Git - packages/ekhtml.git/blob - ekhtml.spec
bd3022b93ea7ea794d55e6d6a87d1bdbbe13ec94
[packages/ekhtml.git] / ekhtml.spec
1 Summary:        ekhtml - a speedy HTML parser
2 Summary(pl):    ekhtml - szybki analizator HTML
3 Name:           ekhtml
4 Version:        0.3.2
5 Release:        1
6 License:        BSD
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
9 # Source0-md5:  cc9d2e4adaccacfacefddbd75ccccfdf
10 URL:            http://ekhtml.sourceforge.net/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 ekhtml is a speedy, yet forgiving, SAX-style HTML parser.
15
16 %description -l pl
17 ekhtml to szybki ale odpuszczaj±cy analizator HTML w stylu SAX.
18
19 %package devel
20 Summary:        Header files for ekhtml
21 Summary(pl):    Pliki nag³ówkowe do ekhtml
22 Group:          Development/Libraries
23 Requires:       %{name} = %{version}
24
25 %description devel
26 Header files for ekhtml.
27
28 %description devel -l pl
29 Pliki nag³ówkowe do ekhtml.
30
31 %package static
32 Summary:        Static ekhtml library
33 Summary(pl):    Biblioteka statyczna ekhtml
34 Group:          Development/Libraries
35 Requires:       %{name}-devel = %{version}
36
37 %description static
38 Static ekhtml library.
39
40 %description static -l pl
41 Biblioteka statyczna ekhtml.
42
43 %prep
44 %setup -q
45
46 %build
47 %configure
48 %{__make}
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52
53 %{__make} install \
54         DESTDIR=$RPM_BUILD_ROOT
55
56 %clean
57 rm -rf $RPM_BUILD_ROOT
58
59 %post   -p /sbin/ldconfig
60 %postun -p /sbin/ldconfig
61
62 %files
63 %defattr(644,root,root,755)
64 %doc ChangeLog README AUTHORS NEWS TODO
65 %attr(755,root,root) %{_libdir}/lib*.so.*.*
66
67 %files devel
68 %defattr(644,root,root,755)
69 %attr(755,root,root) %{_libdir}/lib*.so
70 %{_libdir}/lib*.la
71 %{_includedir}/*
72
73 %files static
74 %defattr(644,root,root,755)
75 %{_libdir}/lib*.a
This page took 0.133398 seconds and 2 git commands to generate.