package created using the webbuild interface [release 3.0.1-1mamba;Fri Oct 03 2014]

This commit is contained in:
Silvan Calarco 2024-01-06 06:55:50 +01:00
parent b6c445afe6
commit a86c8eddba
2 changed files with 51 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# man2html
A Unix manpage-to-HTML converter.

49
man2html.spec Normal file
View File

@ -0,0 +1,49 @@
%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0)
Name: man2html
Version: 3.0.1
Release: 1mamba
Summary: A Unix manpage-to-HTML converter
Group: Applications/Publishing
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.cpan.org
Source: http://search.cpan.org/CPAN/authors/id/E/EH/EHOOD/man2html%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: libperl
BuildRequires: perl-devel
## AUTOBUILDREQ-END
BuildRequires: perl-devel
Requires: perl >= %perl_major_ver
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A Unix manpage-to-HTML converter.
%prep
%setup -q -n man2html%{version}
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -d -m0755 %{buildroot}{%{_bindir},%{_mandir}/man1}
perl ./install.me \
-batch \
-binpath %{buildroot}%{_bindir} \
-manpath %{buildroot}%{_mandir}
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/man2html
%{_mandir}/man1/man2html.1*
%doc COPYING
%changelog
* Fri Oct 03 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.0.1-1mamba
- package created using the webbuild interface