From a6eba4d0224ac2b59c752c42bb8fd8517665b5c7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Arkadiusz=20Mi=C5=9Bkiewicz?= Date: Tue, 30 Sep 2003 16:25:54 +0000 Subject: [PATCH] - initial pld release Changed files: dtach.spec -> 1.1 --- dtach.spec | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 dtach.spec diff --git a/dtach.spec b/dtach.spec new file mode 100644 index 0000000..5b1a08d --- /dev/null +++ b/dtach.spec @@ -0,0 +1,40 @@ +Summary: A program that emulates the detach feature of screen +Name: dtach +Version: 0.5 +Release: 1 +License: GPL +Group: Applications/Terminal +Source0: http://dl.sourceforge.net/dtach/%{name}-%{version}.tar.gz +# Source0-md5: 3ed45d8a52539c25302302a419e1358e +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%description +dtach is a program that emulates the detach feature of screen, with +less overhead. It is designed to be transparent and un-intrusive; it +avoids interpreting the input and output between attached terminals +and the program under its control. Consequently, it works best with +full-screen applications such as emacs. + +%prep +%setup -q + +%build +%configure \ + +%{__make} + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1} + +install %{name} $RPM_BUILD_ROOT%{_bindir} +install %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1 + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(644,root,root,755) +%doc README +%attr(755,root,root) %{_bindir}/* +%{_mandir}/man1/* -- 2.43.0