]> git.pld-linux.org Git - packages/xqilla.git/blob - xqilla.spec
- unconditional noarch subpackages
[packages/xqilla.git] / xqilla.spec
1 #
2 # Conditional build:
3 %bcond_without  apidocs         # do not build and package API docs
4
5 Summary:        XQilla - C++ implementation of XQuery and XPath 2.0 based on Xerces-C
6 Summary(pl.UTF-8):      XQilla - implementacja C++ XQuary i XPath 2.0 oparta na bibliotece Xerces-C
7 Name:           xqilla
8 Version:        2.3.4
9 Release:        1
10 License:        Apache v2.0
11 Group:          Libraries
12 Source0:        http://downloads.sourceforge.net/xqilla/XQilla-%{version}.tar.gz
13 # Source0-md5:  9b77644c8b0d0741d895d3ccfbfe0016
14 Patch0:         %{name}-link.patch
15 Patch1:         %{name}-soname.patch
16 URL:            http://xqilla.sourceforge.net/
17 BuildRequires:  autoconf >= 2.59
18 BuildRequires:  automake
19 BuildRequires:  faxpp-devel
20 BuildRequires:  flex
21 BuildRequires:  libstdc++-devel
22 BuildRequires:  libtool >= 2:1.5
23 BuildRequires:  rpmbuild(macros) >= 1.752
24 BuildRequires:  tidy-devel
25 BuildRequires:  xerces-c-devel >= 3
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 XQilla - C++ implementation of XQuery and XPath 2.0 based on Xerces-C.
30
31 %description -l pl.UTF-8
32 XQilla - implementacja C++ XQuary i XPath 2.0 oparta na bibliotece
33 Xerces-C.
34
35 %package devel
36 Summary:        Header files for XQilla library
37 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki XQilla
38 Group:          Development/Libraries
39 Requires:       %{name} = %{version}-%{release}
40 Requires:       faxpp-devel
41 Requires:       libstdc++-devel
42 Requires:       tidy-devel
43 Requires:       xerces-c-devel >= 3
44
45 %description devel
46 Header files for XQilla library.
47
48 %description devel -l pl.UTF-8
49 Pliki nagłówkowe biblioteki XQilla.
50
51 %package static
52 Summary:        Static XQilla library
53 Summary(pl.UTF-8):      Statyczna biblioteka XQilla
54 Group:          Development/Libraries
55 Requires:       %{name}-devel = %{version}-%{release}
56
57 %description static
58 Static XQilla library.
59
60 %description static -l pl.UTF-8
61 Statyczna biblioteka XQilla.
62
63 %package apidocs
64 Summary:        XQilla API documentation
65 Summary(pl.UTF-8):      Dokumentacja API biblioteki XQilla
66 Group:          Documentation
67 BuildArch:      noarch
68
69 %description apidocs
70 API and internal documentation for XQilla library.
71
72 %description apidocs -l pl.UTF-8
73 Dokumentacja API biblioteki XQilla.
74
75 %prep
76 %setup -q -n XQilla-%{version}
77 %patch0 -p1
78 %patch1 -p1
79
80 %build
81 %{__libtoolize}
82 %{__aclocal} -I autotools/m4
83 %{__autoconf}
84 %{__autoheader}
85 %{__automake}
86 %configure \
87         --with-faxpp=/usr \
88         --with-xerces=/usr
89
90 %{__make}
91
92 %install
93 rm -rf $RPM_BUILD_ROOT
94
95 %{__make} install \
96         DESTDIR=$RPM_BUILD_ROOT
97
98 %clean
99 rm -rf $RPM_BUILD_ROOT
100
101 %post   -p /sbin/ldconfig
102 %postun -p /sbin/ldconfig
103
104 %files
105 %defattr(644,root,root,755)
106 %doc README TODO
107 %attr(755,root,root) %{_bindir}/xqilla
108 %attr(755,root,root) %{_libdir}/libxqilla.so.*.*.*
109 %attr(755,root,root) %ghost %{_libdir}/libxqilla.so.6
110
111 %files devel
112 %defattr(644,root,root,755)
113 %attr(755,root,root) %{_libdir}/libxqilla.so
114 %{_libdir}/libxqilla.la
115 %{_includedir}/xqilla
116 %{_includedir}/xqc.h
117
118 %files static
119 %defattr(644,root,root,755)
120 %{_libdir}/libxqilla.a
121
122 %if %{with apidocs}
123 %files apidocs
124 %defattr(644,root,root,755)
125 %doc docs/{dom3-api,simple-api,xqc-api,*.html}
126 %endif
This page took 0.514182 seconds and 3 git commands to generate.