]> git.pld-linux.org Git - packages/dtach.git/blame_incremental - dtach.spec
- release 2 (by relup.sh)
[packages/dtach.git] / dtach.spec
... / ...
CommitLineData
1Summary: A program that emulates the detach feature of screen
2Summary(pl.UTF-8): Program emulujący funkcję detach ze screena
3Name: dtach
4Version: 0.8
5Release: 2
6License: GPL
7Group: Applications/Terminal
8Source0: http://dl.sourceforge.net/dtach/%{name}-%{version}.tar.gz
9# Source0-md5: ec5999f3b6bb67da19754fcb2e5221f3
10URL: http://dtach.sourceforge.net/
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14dtach is a program that emulates the detach feature of screen, with
15less overhead. It is designed to be transparent and un-intrusive; it
16avoids interpreting the input and output between attached terminals
17and the program under its control. Consequently, it works best with
18full-screen applications such as emacs.
19
20%description -l pl.UTF-8
21dtach to program emulujący funkcję detach ze screena z mniejszym
22narzutem. Został zaprojektowany tak, by być przezroczysty i
23nieinwazyjny; zapobiega interpretowaniu wejścia i wyjścia pomiędzy
24podłączonymi terminalami a kontrolowanym programem. Konsekwentnie,
25działa najlepiej z aplikacjami pełnoekranowymi takimi jak emacs.
26
27%prep
28%setup -q
29
30%build
31%configure
32
33%{__make}
34
35%install
36rm -rf $RPM_BUILD_ROOT
37install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
38
39install %{name} $RPM_BUILD_ROOT%{_bindir}
40install %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%files
46%defattr(644,root,root,755)
47%doc README
48%attr(755,root,root) %{_bindir}/*
49%{_mandir}/man1/*
This page took 0.05082 seconds and 4 git commands to generate.