package created using the webbuild interface [release 0.73-1mamba;Mon Dec 18 2023]

This commit is contained in:
Silvan Calarco 2024-01-05 17:26:05 +01:00
parent e5ede961c6
commit ea33d65def
2 changed files with 48 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# rinetd
TCP/UDP port redirector.

46
rinetd.spec Normal file
View File

@ -0,0 +1,46 @@
Name: rinetd
Version: 0.73
Release: 1mamba
Summary: TCP/UDP port redirector
Group: Applications/Networking
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/samhocevar/rinetd
Source: https://github.com/samhocevar/rinetd.git/v%{version}/rinetd-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
%description
TCP/UDP port redirector.
%debug_package
%prep
%setup -q
sh ./bootstrap
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%config(noreplace) %{_sysconfdir}/rinetd.conf
%{_sbindir}/rinetd
%{_mandir}/man8/rinetd.8*
%doc COPYING
%changelog
* Mon Dec 18 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.73-1mamba
- package created using the webbuild interface