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