]> git.pld-linux.org Git - packages/xqilla.git/blame - xqilla.spec
- updated to 2.3.2
[packages/xqilla.git] / xqilla.spec
CommitLineData
a0c0ca5d
JB
1#
2# Conditional build:
3%bcond_without apidocs # do not build and package API docs
266a3588 4
a0c0ca5d
JB
5Summary: XQilla - C++ implementation of XQuery and XPath 2.0 based on Xerces-C
6Summary(pl.UTF-8): XQilla - implementacja C++ XQuary i XPath 2.0 oparta na bibliotece Xerces-C
7Name: xqilla
d531bae8
JB
8Version: 2.3.2
9Release: 1
a0c0ca5d
JB
10License: Apache v2.0
11Group: Libraries
12Source0: http://downloads.sourceforge.net/xqilla/XQilla-%{version}.tar.gz
d531bae8 13# Source0-md5: 66112611a77d633f42abcfd561661b01
a0c0ca5d 14Patch0: %{name}-link.patch
d531bae8 15Patch1: %{name}-soname.patch
a0c0ca5d
JB
16URL: http://xqilla.sourceforge.net/
17BuildRequires: autoconf >= 2.59
18BuildRequires: automake
7df9f4d7 19BuildRequires: faxpp-devel
a0c0ca5d
JB
20BuildRequires: flex
21BuildRequires: libstdc++-devel
d531bae8 22BuildRequires: libtool >= 2:1.5
a0c0ca5d
JB
23BuildRequires: tidy-devel
24BuildRequires: xerces-c-devel >= 3
25BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27%description
28XQilla - C++ implementation of XQuery and XPath 2.0 based on Xerces-C.
29
30%description -l pl.UTF-8
31XQilla - implementacja C++ XQuary i XPath 2.0 oparta na bibliotece
32Xerces-C.
33
34%package devel
35Summary: Header files for XQilla library
36Summary(pl.UTF-8): Pliki nagłówkowe biblioteki XQilla
37Group: Development/Libraries
38Requires: %{name} = %{version}-%{release}
7df9f4d7 39Requires: faxpp-devel
a0c0ca5d
JB
40Requires: libstdc++-devel
41Requires: tidy-devel
42Requires: xerces-c-devel >= 3
43
44%description devel
45Header files for XQilla library.
46
47%description devel -l pl.UTF-8
48Pliki nagłówkowe biblioteki XQilla.
49
50%package static
51Summary: Static XQilla library
52Summary(pl.UTF-8): Statyczna biblioteka XQilla
53Group: Development/Libraries
54Requires: %{name}-devel = %{version}-%{release}
55
56%description static
57Static XQilla library.
58
59%description static -l pl.UTF-8
60Statyczna biblioteka XQilla.
61
62%package apidocs
63Summary: XQilla API documentation
64Summary(pl.UTF-8): Dokumentacja API biblioteki XQilla
65Group: Documentation
266a3588
ER
66%if "%{_rpmversion}" >= "5"
67BuildArch: noarch
68%endif
a0c0ca5d
JB
69
70%description apidocs
71API and internal documentation for XQilla library.
72
73%description apidocs -l pl.UTF-8
74Dokumentacja API biblioteki XQilla.
75
76%prep
77%setup -q -n XQilla-%{version}
78%patch0 -p1
d531bae8 79%patch1 -p1
a0c0ca5d
JB
80
81%build
82%{__libtoolize}
83%{__aclocal}
84%{__autoconf}
85%{__autoheader}
86%{__automake}
87%configure \
7df9f4d7 88 --with-faxpp=/usr \
a0c0ca5d
JB
89 --with-xerces=/usr
90
91%{__make}
92
93%install
94rm -rf $RPM_BUILD_ROOT
a0c0ca5d
JB
95%{__make} install \
96 DESTDIR=$RPM_BUILD_ROOT
97
98%clean
99rm -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.098631 seconds and 4 git commands to generate.