]> git.pld-linux.org Git - packages/faxpp.git/blame - faxpp.spec
- unconditional noarch subpackages
[packages/faxpp.git] / faxpp.spec
CommitLineData
867e1d84
JB
1#
2# Conditional build:
3%bcond_without apidocs # do not build and package API docs
4a363432 4
867e1d84
JB
5Summary: Fast XML Pull Parser
6Summary(pl.UTF-8): Fast XML Pull Parser - szybki analizator XML-a
7Name: faxpp
8Version: 0.4
2c8bbe69 9Release: 3
867e1d84
JB
10License: Apache v2.0
11Group: Libraries
12Source0: http://downloads.sourceforge.net/faxpp/%{name}-%{version}.tar.gz
13# Source0-md5: cf9a8f4301699710fd93eb0c854fc420
14URL: http://faxpp.sourceforge.net/
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18Faxpp is a small, fast and conformant XML pull parser written in C
19with an API that can return strings in any encoding including UTF-8
20and UTF-16. Faxpp is written by John Snelson, and is released under
21the terms of the Apache Licence v2.
22
23%description -l pl.UTF-8
24Faxpp to mały, szybki i zgodny ze standardem analizator XML-a napisany
25w C z API mogącym zwracać łańcuchy znaków w dowolnym kodowaniu,
26włącznie z UTF-8 i UTF-16. Faxpp został napisany przez Johna Snelsona
27i wydany na warunkach licencji Apache v2.
28
29%package devel
30Summary: Header files for faxpp library
31Summary(pl.UTF-8): Pliki nagłówkowe biblioteki faxpp
32Group: Development/Libraries
33Requires: %{name} = %{version}-%{release}
34
35%description devel
36Header files for faxpp library.
37
38%description devel -l pl.UTF-8
39Pliki nagłówkowe biblioteki faxpp.
40
41%package static
42Summary: Static faxpp library
43Summary(pl.UTF-8): Statyczna biblioteka faxpp
44Group: Development/Libraries
45Requires: %{name}-devel = %{version}-%{release}
46
47%description static
48Static faxpp library.
49
50%description static -l pl.UTF-8
51Statyczna biblioteka faxpp.
52
53%package apidocs
54Summary: faxpp API documentation
55Summary(pl.UTF-8): Dokumentacja API biblioteki faxpp
56Group: Documentation
4a363432 57BuildArch: noarch
867e1d84
JB
58
59%description apidocs
60API and internal documentation for faxpp library.
61
62%description apidocs -l pl.UTF-8
63Dokumentacja API biblioteki faxpp.
64
65%prep
66%setup -q
67
68%build
69%configure
70
71%{__make}
72
73%install
74rm -rf $RPM_BUILD_ROOT
75
76%{__make} install \
77 DESTDIR=$RPM_BUILD_ROOT
78
79%clean
80rm -rf $RPM_BUILD_ROOT
81
82%post -p /sbin/ldconfig
83%postun -p /sbin/ldconfig
84
85%files
86%defattr(644,root,root,755)
87%doc ChangeLog TODO
88%attr(755,root,root) %{_libdir}/libfaxpp.so.*.*.*
89%attr(755,root,root) %ghost %{_libdir}/libfaxpp.so.2
90
91%files devel
92%defattr(644,root,root,755)
93%attr(755,root,root) %{_libdir}/libfaxpp.so
94%{_libdir}/libfaxpp.la
95%{_includedir}/faxpp
96
97%files static
98%defattr(644,root,root,755)
99%{_libdir}/libfaxpp.a
100
101%if %{with apidocs}
102%files apidocs
103%defattr(644,root,root,755)
104%doc docs/{api,header.html}
105%endif
This page took 0.092986 seconds and 4 git commands to generate.