forked from pool/libupnp
Adam Majer
16ae21d74b
Split off libixml10 and renamed libupnp6 to it's correct name libupnp13. Major version 6 was last seen long ago. OBS-URL: https://build.opensuse.org/request/show/652542 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libupnp?expand=0&rev=26
114 lines
3.4 KiB
RPMSpec
114 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package libupnp
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2011, Sascha Peilicke <saschpe@gmx.de>
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%define pnpver 13
|
|
%define ixmlver 10
|
|
Name: libupnp
|
|
Version: 1.8.4
|
|
Release: 0
|
|
Summary: Portable Universal Plug and Play (UPnP) SDK
|
|
License: BSD-3-Clause
|
|
Group: Development/Libraries/C and C++
|
|
URL: https://github.com/mrjimenez/pupnp
|
|
Source0: https://downloads.sourceforge.net/pupnp/libupnp-%{version}.tar.bz2
|
|
Source1: https://downloads.sourceforge.net/pupnp/libupnp-%{version}.tar.bz2.sha1
|
|
Source42: baselibs.conf
|
|
Patch0: libupnp-configure.patch
|
|
BuildRequires: libtool
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
The portable Universal Plug and Play (UPnP) SDK provides support for building
|
|
UPnP-compliant control points, devices, and bridges on several operating
|
|
systems.
|
|
|
|
%package -n %{name}%{pnpver}
|
|
Summary: Portable Universal Plug and Play (UPnP) SDK
|
|
Group: System/Libraries
|
|
|
|
%description -n %{name}%{pnpver}
|
|
The portable Universal Plug and Play (UPnP) SDK provides support for building
|
|
UPnP-compliant control points, devices, and bridges on several operating
|
|
systems
|
|
|
|
%package -n libixml%{ixmlver}
|
|
Summary: Portable Universal Plug and Play (UPnP) SDK
|
|
Group: System/Libraries
|
|
|
|
%description -n libixml%{ixmlver}
|
|
The portable Universal Plug and Play (UPnP) SDK provides support for building
|
|
UPnP-compliant control points, devices, and bridges on several operating
|
|
systems
|
|
|
|
%package devel
|
|
Summary: Portable Universal Plug and Play (UPnP) SDK
|
|
Group: Development/Libraries/C and C++
|
|
Provides: libixml-devel = %{version}
|
|
Requires: %{name}%{pnpver} = %{version}
|
|
Requires: libixml%{ixmlver} = %{version}
|
|
|
|
%description devel
|
|
The portable Universal Plug and Play (UPnP) SDK provides support for building
|
|
UPnP-compliant control points, devices, and bridges on several operating
|
|
systems.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
|
|
%build
|
|
# the openssl simply does not compile
|
|
autoreconf -fiv
|
|
%configure \
|
|
--disable-samples \
|
|
--enable-ipv6 \
|
|
--disable-static \
|
|
--enable-reuseaddr \
|
|
--disable-open_ssl \
|
|
--enable-unspecified_server
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%post -p /sbin/ldconfig -n %{name}%{pnpver}
|
|
%postun -p /sbin/ldconfig -n %{name}%{pnpver}
|
|
|
|
%post -p /sbin/ldconfig -n libixml%{ixmlver}
|
|
%postun -p /sbin/ldconfig -n libixml%{ixmlver}
|
|
|
|
%files -n %{name}%{pnpver}
|
|
%doc ChangeLog
|
|
%license COPYING
|
|
%{_libdir}/libupnp.so.%{pnpver}*
|
|
|
|
%files -n libixml%{ixmlver}
|
|
%doc ChangeLog
|
|
%license COPYING
|
|
%{_libdir}/libixml.so.%{ixmlver}*
|
|
|
|
%files -n libupnp-devel
|
|
%{_libdir}/pkgconfig/libupnp.pc
|
|
%{_libdir}/libixml.so
|
|
%{_libdir}/libupnp.so
|
|
%{_includedir}/upnp/
|
|
|
|
%changelog
|