ttyrec-vl.spec 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. Summary: a tty recorder
  2. Name: ttyrec
  3. Version: 1.0.8
  4. Release: 2%{?_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. * Sun Feb 08 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.8-2
  44. - rebuild with VineSeed environment
  45. * Sat Jun 11 2011 IWAI, Masaharu <iwai@alib.jp> 1.0.8-1
  46. - new upstream release
  47. - drop Patch0: upstream merged
  48. - update URL and Source0's URL
  49. - apply new versioning policy
  50. - using UTF-8 in spec file
  51. - add Vendor and Distribution tags
  52. - add Packager: iwaim
  53. * Mon Aug 27 2007 Shu KONNO <owa@bg.wakwak.com> 1.0.6-0vl4
  54. - s/Copyright/License/
  55. * Sun Jun 26 2005 HOTTA Michihide <hotta@net-newbie.com> 1.0.6-0vl3
  56. - add ttyrec-1.0.6-pty.patch
  57. * Sun May 4 2003 IWAI Masaharu <iwai@alib.jp> 1.0.6-0vl2
  58. - fix %%{files}
  59. * Fri May 2 2003 IWAI Masaharu <iwai@alib.jp> 1.0.6-0vl1
  60. - Updated to new upstream version 1.0.6
  61. * Fri Sep 20 2002 yoshihiro ota <ota@j.email.ne.jp>
  62. - Updated to new upstream version 1.0.5.
  63. - Cleaned up spec file.
  64. * Fri May 18 2001 akira yamada <akira@vinelinux.org>
  65. - Updated to new upstream version 1.0.4.
  66. * Fri Dec 29 2000 akira yamada <akira@vinelinux.org>
  67. - Updated to new upstream version 1.0.2.
  68. * Wed Dec 27 2000 akira yamada <akira@vinelinux.org>
  69. - Initial packaging.