[PATCH] cogito rpm package to include manuals
From: Pavel Roskin <hidden>
Date: 2016-06-15 22:42:10
Subsystem:
the rest · Maintainer:
Linus Torvalds
The cogito rpm package created by "make rpm" lacks manual pages. I can understand why manuals are not generated for local installations by default (asciidoc is slow, and the commands are self-documented), but rpm packages should be closer to perfection. Since there is no way to install manuals without also installing the text documentation, so the later is deleted after installation. Nothing from the Documentation directory except tutorial-script should be included as documentation. Signed-off-by: Pavel Roskin <redacted>
diff --git a/cogito.spec.in b/cogito.spec.in
index 080b988..1ed9305 100644
--- a/cogito.spec.in
+++ b/cogito.spec.in@@ -8,6 +8,7 @@ URL: http://kernel.org/pub/software/sc Source: http://kernel.org/pub/software/scm/cogito/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: git-core >= 0.99.7 +BuildRequires: asciidoc BuildArch: noarch %description
@@ -21,11 +22,13 @@ many other version control systems. %build -make +make all doc %install rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} libdir=%{_libdir}/cogito install +make DESTDIR=$RPM_BUILD_ROOT prefix=%{_prefix} libdir=%{_libdir}/cogito mandir=%{_mandir} \ + install install-doc +rm -rf $RPM_BUILD_ROOT/%{_prefix}/share/doc/cogito/txt %clean rm -rf $RPM_BUILD_ROOT
@@ -35,9 +38,13 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %dir %{_libdir}/cogito %{_libdir}/cogito/* -%doc README COPYING Documentation/* +%{_mandir}/man*/* +%doc README COPYING Documentation/tutorial-script %changelog +* Tue Nov 1 2005 Pavel Roskin <proski@gnu.org> 0.15.1-1 +- generate and include manuals + * Tue Oct 11 2005 Chris Wright <chrisw@osdl.org> 0.15.1-1 - use %dist
--
Regards,
Pavel Roskin