@setcontentsaftertitlepage command anymore - disable info page install macros, it's done by triggers now OBS-URL: https://build.opensuse.org/package/show/home:frispete:telephony:asterisk/iksemel?expand=0&rev=4
115 lines
3.1 KiB
RPMSpec
115 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package iksemel
|
|
#
|
|
# Copyright (c) 2023 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
%if 0%{?suse_version} > 1500
|
|
%bcond_with python2
|
|
%else
|
|
%bcond_without python2
|
|
%endif
|
|
|
|
Name: iksemel
|
|
%define lname libiksemel3
|
|
Summary: XML parsing library
|
|
License: LGPL-2.1+
|
|
Group: System/Libraries
|
|
Version: 1.5
|
|
Release: 0
|
|
Url: http://code.google.com/p/iksemel
|
|
|
|
#DL-URL: http://iksemel.googlecode.com/files/iksemel-%version.tar.gz
|
|
Source: %name-%version.tar.bz2
|
|
Patch1: secure_gnutls_options.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: libtool
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: makeinfo
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(gnutls)
|
|
BuildRequires: pkgconfig(lzo2)
|
|
%if %{with python2}
|
|
BuildRequires: python-devel
|
|
%endif
|
|
|
|
%description
|
|
This is an XML parser library mainly designed for Jabber applications.
|
|
It provides SAX, DOM, and special Jabber stream APIs. Library is coded
|
|
in ANSI C except the network code (which is POSIX compatible), thus
|
|
highly portable.
|
|
|
|
%package -n %lname
|
|
Summary: XML parsing library
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
This package contains shared libraries for packages that use iksemel
|
|
|
|
%package devel
|
|
Summary: Header files, libraries and development documentation for iksemel
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %lname = %version
|
|
|
|
%description devel
|
|
This package contains the header files, static libraries and development
|
|
documentation for iksemel. If you like to develop programs using iksemel,
|
|
you will need to install iksemel-devel.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
sed -i '/^@setcontentsaftertitlepage/d' doc/iksemel.texi
|
|
|
|
%build
|
|
autoreconf -if
|
|
configpars="--disable-static --with-pic"
|
|
%if ! %{with python2}
|
|
configpars="$configpars --disable-python"
|
|
%endif
|
|
%configure $configpars
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%makeinstall
|
|
find "%buildroot" -type f -name "*.la" -delete
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO
|
|
%_infodir/iksemel.gz
|
|
%_bindir/ikslint
|
|
%_bindir/iksperf
|
|
%_bindir/iksroster
|
|
%if %{with python2}
|
|
%{python_sitearch}/iksemel.so
|
|
%endif
|
|
|
|
%files -n %lname
|
|
%defattr(-,root,root)
|
|
%_libdir/libiksemel.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_includedir/iksemel.h
|
|
%_libdir/libiksemel.so
|
|
%_libdir/pkgconfig/iksemel.pc
|
|
|
|
%changelog
|