1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Summary: Text-based addressbook program
Name: abook
Version: 0.5.3
Release: 1
Copyright: GPL
Group: Utilities
Source: http://prdownloads.sourceforge.net/abook/%{name}-%{version}.tar.gz
URL: http://abook.sourceforge.net/
BuildPreReq: ncurses-devel readline-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
Abook is a text-based addressbook program designed to
use with mutt mail client.
%prep
%setup -q
%build
%configure
make %{_smp_mflags}
%install
%makeinstall
%clean
[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf -- "%{buildroot}"
%files
%defattr(-,root,root)
%doc AUTHORS BUGS COPYING ChangeLog FAQ NEWS README THANKS TODO sample.abookrc
%{_bindir}/abook
%{_mandir}/man1/abook.*
%{_mandir}/man5/abookrc.*
%changelog
* Mon Mar 11 2002 Jaakko Heinonen <jheinonen@users.sourceforge.net>
- rewrote the spec file originally written by
Gustavo Niemeyer <niemeyer@conectiva.com>
|