diff --git a/README.md b/README.md index aebafe1..9742f61 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ttyrec +Recorded data can be played back with the included ttyplay command. ttyrec is just a derivative of script command for recording timing information with microsecond accuracy as well. It can record emacs -nw, vi, lynx, or any programs running on tty. + diff --git a/ttyrec.spec b/ttyrec.spec new file mode 100644 index 0000000..432f376 --- /dev/null +++ b/ttyrec.spec @@ -0,0 +1,53 @@ +Name: ttyrec +Version: 1.0.8 +Release: 2mamba +Summary: A tty recorder +Group: Applications/Multimedia +Vendor: openmamba +Distribution: openmamba +Packager: Stefano Cotta Ramusino +URL: http://namazu.org/~satoru/ttyrec/index.html.en +Source: http://namazu.org/~satoru/ttyrec/%{name}-%{version}.tar.gz +License: BSD +BuildRoot: %{_tmppath}/%{name}-%{version}-root +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END + + +%description +Recorded data can be played back with the included ttyplay command. ttyrec is just a derivative of script command for recording timing information with microsecond accuracy as well. It can record emacs -nw, vi, lynx, or any programs running on tty. + +%prep +%setup -q + +%build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf %{buildroot} +install -d %{buildroot}%{_bindir} +install -d %{buildroot}%{_mandir}/man1 +install -m 644 *.1 %{buildroot}%{_mandir}/man1 +install -m 755 ttyrec %{buildroot}%{_bindir} +install -m 755 ttyplay %{buildroot}%{_bindir} +install -m 755 ttytime %{buildroot}%{_bindir} + +%clean +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +%files +%defattr(-,root,root) +%{_bindir}/* +%{_mandir}/man1/* +%doc README + +%changelog +* Tue Aug 27 2013 Automatic Build System 1.0.8-2mamba +- automatic rebuild by autodist + +* Wed Oct 01 2008 Tiziana Ferro 1.0.8-1mamba +- update to 1.0.8 + +* Fri Nov 18 2005 Stefano Cotta Ramusino 1.0.6-1qilnx +- package created by autospec