]> git.pld-linux.org Git - packages/dropbear.git/blame - dropbear.spec
- verbose files
[packages/dropbear.git] / dropbear.spec
CommitLineData
075a17e6
ER
1# TODO
2# - enable pam, see also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=533525 (1-2 solvable, 3 needs code)
3#
4# Conditional build:
5%bcond_with pam # PAM authentication support
6
6be0e7e8 7Summary: Dropbear - a smallish ssh2 server
d9e1d748 8Summary(pl.UTF-8): Dropbear - mały serwer ssh2
bc80c1ce 9Name: dropbear
d86acc5a 10Version: 0.53
bc80c1ce 11Release: 0.1
13419a2a 12License: MIT
bc80c1ce 13Group: Applications/Networking
a6081f8b 14Source0: http://matt.ucc.asn.au/dropbear/releases/%{name}-%{version}.tar.bz2
d86acc5a 15# Source0-md5: b6df80b05b6b7d03f6b232917b677d5d
bc80c1ce 16URL: http://matt.ucc.asn.au/dropbear/dropbear.html
56bd25dc 17BuildRequires: autoconf >= 2.50
6be0e7e8 18BuildRequires: automake
bc80c1ce 19BuildRequires: zlib-devel
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23This is dropbear, a smallish and friendly ssh2 daemon.
24
25It is currently usable though betaish, requiring work in certain areas
26before use in a production environment. If you need a small sshd to
27run on a 4 meg laptop, then sure, use it now. But test it thoroughly
28before using it somewhere important :)
29
3046c2b2
JR
30%description -l pl.UTF-8
31To jest dropbear - mały i przyjazny demon ssh2.
6be0e7e8 32
3046c2b2
JR
33Jest aktualnie używalny, choć jest w stanie beta, wymaga pracy w
34niektórych obszarach przed użyciem w produkcyjnym środowisku. Jeśli
35potrzebujemy małego sshd do uruchomienia na laptopie z 4MB pamięci,
36można używać go już teraz. Ale przed używaniem do czegoś ważniejszego
37trzeba go porządnie przetestować :)
6be0e7e8 38
bc80c1ce 39%prep
40%setup -q
41
42%build
bc80c1ce 43%{__aclocal}
44%{__autoconf}
45%{__autoheader}
075a17e6
ER
46%configure \
47 %{?with_pam:--enable-pam}
bc80c1ce 48%{__make}
49
50%install
51rm -rf $RPM_BUILD_ROOT
197af5d2 52install -d $RPM_BUILD_ROOT%{_mandir}/man8
197af5d2
AG
53%{__make} install \
54 DESTDIR=$RPM_BUILD_ROOT
55
075a17e6 56cp -p dropbear{,key}.8 $RPM_BUILD_ROOT%{_mandir}/man8
bc80c1ce 57
58%clean
59rm -rf $RPM_BUILD_ROOT
60
61%files
62%defattr(644,root,root,755)
197af5d2 63%doc CHANGES README SMALL TODO
075a17e6
ER
64%attr(755,root,root) %{_bindir}/dbclient
65%attr(755,root,root) %{_bindir}/dropbearconvert
66%attr(755,root,root) %{_bindir}/dropbearkey
67%attr(755,root,root) %{_sbindir}/dropbear
68%{_mandir}/man8/dropbear.8*
69%{_mandir}/man8/dropbearkey.8*
This page took 0.109092 seconds and 4 git commands to generate.