]> git.pld-linux.org Git - packages/dtach.git/blob - dtach.spec
- initial pld release
[packages/dtach.git] / dtach.spec
1 Summary:        A program that emulates the detach feature of screen
2 Name:           dtach
3 Version:        0.5
4 Release:        1
5 License:        GPL
6 Group:          Applications/Terminal
7 Source0:        http://dl.sourceforge.net/dtach/%{name}-%{version}.tar.gz
8 # Source0-md5:  3ed45d8a52539c25302302a419e1358e
9 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
10
11 %description
12 dtach is a program that emulates the detach feature of screen, with
13 less overhead.  It is designed to be transparent and un-intrusive; it
14 avoids interpreting the input and output between attached terminals
15 and the program under its control. Consequently, it works best with
16 full-screen applications such as emacs.
17
18 %prep
19 %setup -q
20
21 %build
22 %configure \
23
24 %{__make}
25
26 %install
27 rm -rf $RPM_BUILD_ROOT
28 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
29
30 install %{name}         $RPM_BUILD_ROOT%{_bindir}
31 install %{name}.1       $RPM_BUILD_ROOT%{_mandir}/man1
32
33 %clean
34 rm -rf $RPM_BUILD_ROOT
35
36 %files
37 %defattr(644,root,root,755)
38 %doc README
39 %attr(755,root,root) %{_bindir}/*
40 %{_mandir}/man1/*
This page took 0.072233 seconds and 4 git commands to generate.