ttyrec-vl.spec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Summary: a tty recorder
  2. Name: ttyrec
  3. Version: 1.0.6
  4. Release: 0vl4
  5. License: BSD
  6. Group: Applications/Text
  7. Source: http://namazu.org/~satoru/ttyrec/ttyrec-%{version}.tar.gz
  8. URL: http://namazu.org/~satoru/ttyrec/
  9. Patch: ttyrec-1.0.6-pty.patch
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. Summary(ja): ttyレコーダー
  12. %description
  13. ttyrec is a tty recorder. A recorded data can be playback with the
  14. included ttyplay command. ttyrec is just a derivative of script
  15. command for recording timing information with microsecond accuracy as
  16. well. It can record emacs -nw, vi, lynx, or any programs running on
  17. tty.
  18. %description -l ja
  19. ttyrecはttyを録画します。録画したデータは付属のttyplayコマンドで再生で
  20. きます。ttyrecはscriptコマンドにマイクロ秒単位で時間情報を埋め込む機能
  21. を追加しただけの代物です。emacs -nwでもviでもlynxでもtty上で動くプログ
  22. ラムなら何でも録画できます。
  23. %prep
  24. %setup -q
  25. %patch -p1 -b .pty
  26. %build
  27. make
  28. %install
  29. rm -rf ${RPM_BUILD_ROOT}
  30. mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
  31. mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1
  32. install -m 755 tty{rec,play,time} $RPM_BUILD_ROOT%{_bindir}
  33. install -m 644 *.1 $RPM_BUILD_ROOT%{_mandir}/man1
  34. %clean
  35. rm -rf ${RPM_BUILD_ROOT}
  36. %files
  37. %defattr(-, root, root)
  38. %doc README
  39. %{_bindir}/*
  40. %{_mandir}/*/*
  41. %changelog
  42. * Mon Aug 27 2007 Shu KONNO <owa@bg.wakwak.com> 1.0.6-0vl4
  43. - s/Copyright/License/
  44. * Sun Jun 26 2005 HOTTA Michihide <hotta@net-newbie.com> 1.0.6-0vl3
  45. - add ttyrec-1.0.6-pty.patch
  46. * Sun May 4 2003 IWAI Masaharu <iwai@alib.jp> 1.0.6-0vl2
  47. - fix %%{files}
  48. * Fri May 2 2003 IWAI Masaharu <iwai@alib.jp> 1.0.6-0vl1
  49. - Updated to new upstream version 1.0.6
  50. * Fri Sep 20 2002 yoshihiro ota <ota@j.email.ne.jp>
  51. - Updated to new upstream version 1.0.5.
  52. - Cleaned up spec file.
  53. * Fri May 18 2001 akira yamada <akira@vinelinux.org>
  54. - Updated to new upstream version 1.0.4.
  55. * Fri Dec 29 2000 akira yamada <akira@vinelinux.org>
  56. - Updated to new upstream version 1.0.2.
  57. * Wed Dec 27 2000 akira yamada <akira@vinelinux.org>
  58. - Initial packaging.