summaryrefslogtreecommitdiffstats
path: root/qarsh.spec
diff options
context:
space:
mode:
Diffstat (limited to 'qarsh.spec')
-rw-r--r--qarsh.spec43
1 files changed, 43 insertions, 0 deletions
diff --git a/qarsh.spec b/qarsh.spec
new file mode 100644
index 0000000..9f2003c
--- /dev/null
+++ b/qarsh.spec
@@ -0,0 +1,43 @@
+Summary: QA Remote Shell
+Name: qarsh
+Version: 1.0
+Release: 1
+Group: QA
+License: GPL
+Buildroot: %{_tmppath}/%{name}-%{version}-root
+
+Source0: qarsh.tar.bz2
+
+%description
+qarsh is an rsh/ssh replacement designed for a testing environment. That means
+no encryption and no authentication. It also means that the return code is the
+same as the remote process and some signals are propogated to the remote
+process.
+
+%prep
+
+%setup -q -c
+
+%build
+[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
+mkdir -p %{buildroot}/
+make
+
+%install
+make install INSTROOT=$RPM_BUILD_ROOT
+
+%clean
+[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
+
+
+%files
+%defattr(-,root,root)
+/usr/bin/qarsh
+/usr/bin/qacp
+/usr/bin/btimec
+/usr/sbin/qarshd
+/usr/sbin/btimed
+
+%changelog
+* Thu Sep 13 2005 Nathan Straz <nstraz@redhat.com>
+- Initial packaging