summaryrefslogtreecommitdiffstats
path: root/qarsh.spec
diff options
context:
space:
mode:
authorNate Straz <nstraz@redhat.com>2005-09-13 16:33:19 +0000
committerNathan Straz <nstraz@redhat.com>2008-09-23 09:37:44 -0400
commit8bd361e185489e2ce2f0582e3c70de9bf6451a08 (patch)
treeb3eb3a36f34e450f8a35bc776d67efdd49932970 /qarsh.spec
parentbf489daffc4902db3a9eb95d485fd867ac1ea524 (diff)
downloadqarsh-8bd361e185489e2ce2f0582e3c70de9bf6451a08.tar.gz
qarsh-8bd361e185489e2ce2f0582e3c70de9bf6451a08.tar.xz
qarsh-8bd361e185489e2ce2f0582e3c70de9bf6451a08.zip
Initial pass at packagingv1.0-1
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