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 47 48 49
|
Summary: A program to learn touch typing
Name: tipptrainer
Version: 0.6.0
Release: 1
Group: unknown
Copyright: GPL
Vendor: PingoS Tipptrainer Team <tipptrainer@pingos.org>
Url: http://www.pingos.org/tipptrainer/
Packager: PingoS Tipptrainer Team <tipptrainer@pingos.org>
Source0: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
This program was developed as part of the PingoS project to
teach children how to type computer keyboards.
Languages German and English available.
%prep
%setup -q
%build
./configure --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir}
%{__make}
%install
%{__make} install DESTDIR=$RPM_BUILD_ROOT
%clean
%{__make} distclean
%files
%defattr(-,root,root)
%doc AUTHORS BUGS README*
%attr(0755,-,-) %{_bindir}/tipptrainer
%attr(0644,-,-) %{_datadir}/locale/*/LC_MESSAGES/tipptrainer.mo
%attr(0644,-,-) %{_mandir}/man1/tipptrainer*
%attr(0644,-,-) %{_mandir}/de/man1/tipptrainer*
%{_datadir}/tipptrainer/*
%changelog
* Fri Nov 14 2003 Hendrik Sattler <pingos@hendrik-sattler.de>
- list all installed files in the files section
* Wed Nov 12 2003 Hendrik Sattler <pingos@hendrik-sattler.de>
- Added mandir parameter to configure
* Fri Jul 18 2003 Hendrik Sattler <pingos@hendrik-sattler.de>
- Initial RPM release
|