standardize the specfile and add some missing build requirements [release 5.9.0-2mamba;Fri May 01 2015]

This commit is contained in:
Davide Madrisan 2024-01-06 01:19:51 +01:00
parent d7d9070d77
commit 66c90139f8
2 changed files with 94 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# kdnssd
Network service discovery using Zeroconf.

92
kdnssd.spec Normal file
View File

@ -0,0 +1,92 @@
%define majver %(echo %version | cut -d. -f1-2)
Name: kdnssd
Version: 5.9.0
Release: 2mamba
Summary: Network service discovery using Zeroconf
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.kde.org
Source: http://download.kde.org/stable/frameworks/%{majver}/kdnssd-%{version}.tar.xz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libqt5-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRequires: extra-cmake-modules
BuildRequires: rpm-macros-kde5
BuildRequires: libQt5Core
BuildRequires: libQt5Network
BuildRequires: libavahi-devel
BuildRequires: libnss-devel
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Network service discovery using Zeroconf.
%package -n lib%{name}
Group: System/Libraries
Summary: Network service discovery using Zeroconf
%description -n lib%{name}
Network service discovery using Zeroconf.
%package -n lib%{name}-devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
%description -n lib%{name}-devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%cmake_kde5 -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%find_lang kdnssd5_qt --with-qt --all-name || touch kdnssd5_qt
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%files -n lib%{name} -f kdnssd5_qt.lang
%defattr(-,root,root)
%{_libdir}/libKF5DNSSD.so.*
%doc COPYING.LIB
%files -n lib%{name}-devel
%defattr(-,root,root)
%dir %{_kde5_includedir}/KDNSSD
%dir %{_kde5_includedir}/KDNSSD/DNSSD
%{_kde5_includedir}/KDNSSD/DNSSD/*
%dir %{_kde5_includedir}/KDNSSD/dnssd
%{_kde5_includedir}/KDNSSD/dnssd/*
%dir %{_libdir}/cmake/KF5DNSSD
%{_libdir}/cmake/KF5DNSSD/KF5DNSSD*.cmake
%{_libdir}/libKF5DNSSD.so
%{_kde5_mkspecsdir}/qt_KDNSSD.pri
%doc README.md
%changelog
* Fri May 01 2015 Davide Madrisan <davide.madrisan@gmail.com> 5.9.0-2mamba
- standardize the specfile and add some missing build requirements
* Thu Apr 30 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.9.0-1mamba
- package created using the webbuild interface