SPECS: Sman.spec (NEW) - added, not tested

twittner twittner at pld-linux.org
Sun Aug 21 13:00:18 CEST 2005


Author: twittner                     Date: Sun Aug 21 11:00:18 2005 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- added, not tested

---- Files affected:
SPECS:
   Sman.spec (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SPECS/Sman.spec
diff -u /dev/null SPECS/Sman.spec:1.1
--- /dev/null	Sun Aug 21 13:00:18 2005
+++ SPECS/Sman.spec	Sun Aug 21 13:00:10 2005
@@ -0,0 +1,104 @@
+# $Revision$, $Date$
+#
+# Conditional build:
+%bcond_without	tests	# do not perform "make test"
+#
+%include	/usr/lib/rpm/macros.perl
+Summary:	Searcher for Man pages
+Name:		Sman
+Version:	0.95
+Release:	0.1
+# "same as perl"
+License:	Artistic
+Group:		Development/Languages/Perl
+Source0:	http://joshr.com/src/sman/%{name}-%{version}.tar.gz
+# Source0-md5:	b786338eba068a4a110bf2bbda51e695
+URL:		http://joshr.com/src/sman/
+BuildRequires:	perl-devel >= 1:5.8.0
+BuildRequires:	perl-Cache-Cache
+BuildRequires:	perl-Compress-Zlib
+BuildRequires:	perl-FreezeThaw
+BuildRequires:	rpm-perlprov >= 4.1-13
+BuildRequires:	swish-e-perl
+%if %{with tests}
+%endif
+BuildArch:	noarch
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+#%%define		_noautoreq	'perl(anything_fake_or_conditional)'
+
+%description
+Sman is the Searcher for Man pages. Based on the example of the same
+name in Josh Rabinowitz's article "How To Index Anything" in the July,
+2003 issue of Linux Journal
+<http://www.linuxjournal.com/article.php?sid=6652>, sman is an
+enhanced version of 'apropos' and 'man -k'. Sman adds several key
+abilities over its predecessors:
+
+- Supports complex natural language text searches such as "(linux and
+  kernel) or (mach and microkernel)"
+
+- Shows results in a ranked order, and optionally an extract (using
+  -e) of the manpage showing the searched text highlighted
+
+- Allows for searches by manpage section, title, body, or filename
+  (use 'metaname=searchword')
+
+- Indexes the complete contents of the man page, not just the title
+  and description
+
+- Uses a prebuilt index to perform fast searches
+
+- Performs 'stemming' so that a search for "searches" will match a
+  document with the word "searching"
+
+%prep
+%setup -q
+
+%build
+%{__perl} Makefile.PL \
+	INSTALLDIRS=vendor
+
+%{__make}
+
+%{?with_tests:%{__make} test}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} pure_install \
+	DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc Changes README TODO
+%attr(755,root,root) %{_bindir}/sman
+%attr(755,root,root) %{_bindir}/sman-update
+%{perl_vendorlib}/Sman.pm
+%dir %{perl_vendorlib}/Sman
+%{perl_vendorlib}/Sman/Autoconfig.pm
+%{perl_vendorlib}/Sman/Config.pm
+%dir %{perl_vendorlib}/Sman/Man
+%{perl_vendorlib}/Sman/Man/Cache.pm
+%{perl_vendorlib}/Sman/Man/Cache/DB_File.pm
+%{perl_vendorlib}/Sman/Man/Cache/FileCache.pm
+%{perl_vendorlib}/Sman/Man/Convert.pm
+%{perl_vendorlib}/Sman/Man/Find.pm
+%{perl_vendorlib}/Sman/Swishe.pm
+%{perl_vendorlib}/Sman/Util.pm
+%{perl_vendorlib}/sman.conf.pm
+%{_mandir}/man1/*
+%{_mandir}/man3/*
+
+%define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1  2005/08/21 11:00:10  twittner
+- added, not tested
+
================================================================



More information about the pld-cvs-commit mailing list