wf/wf.spec
2008-02-09 15:57:55 +00:00

44 lines
998 B
RPMSpec

Summary: Simple word frequency counter
Name: wf
Version: 0.41
Release: 2%{?dist}
License: GPLv2
Group: Applications/Text
URL: http://www.async.com.br/~marcelo/%{name}/
Source0: http://www.async.com.br/~marcelo/%{name}/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
wf scans a text file and counts the frequency of words through the
whole text.
%prep
%setup -q
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%{__make} DESTDIR=%{buildroot} INSTALL="%{__install} -p" install
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-, root, root, -)
%doc AUTHORS ChangeLog COPYING NEWS README TODO
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1*
%changelog
* Sat Feb 9 2008 Terje Rosten <terje.rosten@ntnu.no> - 0.41-2
- rebuild
* Fri Jan 18 2008 Terje Rosten <terje.rosten@ntnu.no> - 0.41-1
- 0.41
* Wed Jan 16 2008 Terje Rosten <terje.rosten@ntnu.no> - 0.4-1
- initial build.