package created using the webbuild interface [release 0.4-1mamba;Thu Jan 19 2023]

This commit is contained in:
Silvan Calarco 2024-01-05 23:52:54 +01:00
parent 16cc6b626e
commit 73d32f2ab7
2 changed files with 48 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# igmpproxy
IGMP multicast routing daemon.

46
igmpproxy.spec Normal file
View File

@ -0,0 +1,46 @@
Name: igmpproxy
Version: 0.4
Release: 1mamba
Summary: IGMP multicast routing daemon
Group: Network/Routing
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/pali/igmpproxy
Source: https://github.com/pali/igmpproxy.git/%{version}/igmpproxy-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
%description
IGMP multicast routing daemon.
%debug_package
%prep
%setup -q
./autogen.sh
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%config(noreplace) %{_sysconfdir}/igmpproxy.conf
%{_sbindir}/igmpproxy
%{_mandir}/man5/igmpproxy.conf.5*
%{_mandir}/man8/igmpproxy.8*
%doc COPYING
%changelog
* Thu Jan 19 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4-1mamba
- package created using the webbuild interface