ttyrec-vl.spec 2.3 KB

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