]> git.pld-linux.org Git - packages/detachtty.git/commitdiff
- New package.
authorjaphy <japhy@pld-linux.org>
Wed, 12 Dec 2007 23:56:37 +0000 (23:56 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    detachtty.spec -> 1.1

detachtty.spec [new file with mode: 0644]

diff --git a/detachtty.spec b/detachtty.spec
new file mode 100644 (file)
index 0000000..60851fe
--- /dev/null
@@ -0,0 +1,68 @@
+#
+%define                _snapshot       bese20071213
+Summary:       An utility that lets you run interactive programs non-interactively.
+Summary(pl.UTF-8):     Narzędzie pozwalające na nieinteraktywne uruchamianie interaktywnych programów.
+Name:          detachtty
+Version:       0.%{_snapshot}
+Release:       1
+License:       GPL v2
+Group:         Applications
+#              darcs get http://common-lisp.net/project/bese/repos/detachtty/
+Source0:       %{name}-%{version}.tar.gz
+# Source0-md5: 9ad00851091df6ecf40489ef83c668f7
+URL:           http://www.cliki.net/detachtty
+%if %{with initscript}
+BuildRequires: rpmbuild(macros) >= 1.228
+Requires(post,preun):  /sbin/chkconfig
+%endif
+Suggests:      openssh-clients
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Detachtty is a Unix utility that lets you run interactive programs
+(such as Lisp) non-interactively. Also, it allows you to connect to
+them over the network when you do need to interact with them. It is
+intended for use with long-running server processes running in Common
+Lisp implementations.
+
+%description -l pl.UTF-8
+Detachtty jest uniksowym narzędziem pozwalającym na uruchamianie
+programów interaktywnych (jak Lisp) w sposób nieinteraktywny.
+Ponadto, pozwala połączyć się z tymi procesami przez sieć, gdy
+zachodzi potrzeba interakcji.  Stworzony został z myślą o długo
+działających procesach uruchomionych w środowisku Common Lisp.
+
+%prep
+%setup -q
+
+%build
+# if ac/am/* rebuilding is necessary, do it in this order and add
+# appropriate BuildRequires
+#%%{__intltoolize}
+#%%{__gettextize}
+#%%{__libtoolize}
+#%%{__aclocal}
+#%%{__autoconf}
+#%%{__autoheader}
+#%%{__automake}
+#cp -f /usr/share/automake/config.sub .
+
+%{__make} \
+       CFLAGS="%{rpmcflags} -DNEED_PTY_H" \
+       LDFLAGS="%{rpmldflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_bindir}
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT \
+       INSTALL_DIR=%{_bindir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README
+%attr(755,root,root) %{_bindir}/*
This page took 0.085466 seconds and 4 git commands to generate.