summaryrefslogtreecommitdiff
path: root/dtach.spec
blob: baab178a7809be5146a396120af4f2d4788e8fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Summary:	A program that emulates the detach feature of screen
Summary(pl):	Program emulujący funkcję detach ze screena
Name:		dtach
Version:	0.7
Release:	1
License:	GPL
Group:		Applications/Terminal
Source0:	http://dl.sourceforge.net/dtach/%{name}-%{version}.tar.gz
# Source0-md5:	9aa11433d5a5b4b9fed271f10102cf6f
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.

%description -l pl
dtach to program emulujący funkcję detach ze screena z mniejszym
narzutem. Został zaprojektowany tak, by być przezroczysty i
nieinwazyjny; zapobiega interpretowaniu wejścia i wyjścia pomiędzy
podłączonymi terminalami a kontrolowanym programem. Konsekwentnie,
działa najlepiej z aplikacjami pełnoekranowymi takimi jak 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/*