]> git.pld-linux.org Git - packages/sshpass.git/blob - sshpass.spec
b439045325e3668bf3ad319758da2d6b279c8f31
[packages/sshpass.git] / sshpass.spec
1 Summary:        Non-interactive ssh password auth
2 Name:           sshpass
3 Version:        1.06
4 Release:        1
5 License:        GPL v2
6 Group:          Applications/Networking
7 Source0:        http://downloads.sourceforge.net/sshpass/%{name}-%{version}.tar.gz
8 # Source0-md5:  f59695e3b9761fb51be7d795819421f9
9 URL:            http://sshpass.sourceforge.net/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 Sshpass is a tool to non-interactivly perform a password
14 authentication with SSH's so called "interactive keyboard password
15 authentication". Most users should use SSH's more secure public key
16 authentiaction instead.
17
18 %prep
19 %setup -q
20
21 %build
22 %configure
23 %{__make}
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 %{__make} install \
28         DESTDIR=$RPM_BUILD_ROOT
29
30 %clean
31 rm -rf $RPM_BUILD_ROOT
32
33 %files
34 %defattr(644,root,root,755)
35 %doc AUTHORS ChangeLog NEWS
36 %attr(755,root,root) %{_bindir}/sshpass
37 %{_mandir}/man1/sshpass.1*
This page took 0.043101 seconds and 2 git commands to generate.