wf/wf.spec

47 lines
1.1 KiB
RPMSpec

Summary: Simple word frequency counter
Name: wf
Version: 0.41
Release: 3%{?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
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* 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.