]> git.pld-linux.org Git - packages/detachtty.git/blame - detachtty.spec
- cleanup
[packages/detachtty.git] / detachtty.spec
CommitLineData
25646cf9 1#
2%define _snapshot bese20071213
26617f59
JB
3Summary: An utility that lets you run interactive programs non-interactively
4Summary(pl.UTF-8): Narzędzie pozwalające na nieinteraktywne uruchamianie interaktywnych programów
25646cf9 5Name: detachtty
6Version: 0.%{_snapshot}
7Release: 1
8License: GPL v2
9Group: Applications
10# darcs get http://common-lisp.net/project/bese/repos/detachtty/
11Source0: %{name}-%{version}.tar.gz
12# Source0-md5: 9ad00851091df6ecf40489ef83c668f7
13URL: http://www.cliki.net/detachtty
25646cf9 14Suggests: openssh-clients
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18Detachtty is a Unix utility that lets you run interactive programs
19(such as Lisp) non-interactively. Also, it allows you to connect to
20them over the network when you do need to interact with them. It is
21intended for use with long-running server processes running in Common
22Lisp implementations.
23
24%description -l pl.UTF-8
25Detachtty jest uniksowym narzędziem pozwalającym na uruchamianie
26programów interaktywnych (jak Lisp) w sposób nieinteraktywny.
27Ponadto, pozwala połączyć się z tymi procesami przez sieć, gdy
28zachodzi potrzeba interakcji. Stworzony został z myślą o długo
29działających procesach uruchomionych w środowisku Common Lisp.
30
31%prep
32%setup -q
33
34%build
25646cf9 35%{__make} \
36 CFLAGS="%{rpmcflags} -DNEED_PTY_H" \
37 LDFLAGS="%{rpmldflags}"
38
39%install
40rm -rf $RPM_BUILD_ROOT
41install -d $RPM_BUILD_ROOT%{_bindir}
42
43%{__make} install \
44 DESTDIR=$RPM_BUILD_ROOT \
45 INSTALL_DIR=%{_bindir}
46
47%clean
48rm -rf $RPM_BUILD_ROOT
49
50%files
51%defattr(644,root,root,755)
52%doc README
53%attr(755,root,root) %{_bindir}/*
This page took 0.084132 seconds and 4 git commands to generate.