]> git.pld-linux.org Git - packages/dropbear.git/blob - dropbear.spec
Release 2 (by relup.sh)
[packages/dropbear.git] / dropbear.spec
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 (most likely incomplete)
6 %bcond_without  system_libtom   # use system libtommath/libtomcrypt
7
8 Summary:        Dropbear - a smallish ssh2 server
9 Summary(pl.UTF-8):      Dropbear - mały serwer ssh2
10 Name:           dropbear
11 Version:        2018.76
12 Release:        1
13 License:        MIT and BSD
14 Group:          Applications/Networking
15 Source0:        https://matt.ucc.asn.au/dropbear/releases/%{name}-%{version}.tar.bz2
16 # Source0-md5:  c3912f7fcdcc57c99937e4a79480d2c2
17 URL:            https://matt.ucc.asn.au/dropbear/dropbear.html
18 BuildRequires:  autoconf >= 2.59
19 BuildRequires:  automake
20 %{?with_system_libtom:BuildRequires:    libtomcrypt-devel >= 1.17-2}
21 %{?with_pam:BuildRequires:     pam-devel}
22 BuildRequires:  zlib-devel
23 %{?with_system_libtom:Requires: libtomcrypt >= 1.17-2}
24 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26 %description
27 This is dropbear, a smallish and friendly ssh2 daemon.
28
29 It is currently usable though betaish, requiring work in certain areas
30 before use in a production environment. If you need a small sshd to
31 run on a 4 meg laptop, then sure, use it now. But test it thoroughly
32 before using it somewhere important :)
33
34 %description -l pl.UTF-8
35 To jest dropbear - mały i przyjazny demon ssh2.
36
37 Jest aktualnie używalny, choć jest w stanie beta, wymaga pracy w
38 niektórych obszarach przed użyciem w produkcyjnym środowisku. Jeśli
39 potrzebujemy małego sshd do uruchomienia na laptopie z 4MB pamięci,
40 można używać go już teraz. Ale przed używaniem do czegoś ważniejszego
41 trzeba go porządnie przetestować :)
42
43 %prep
44 %setup -q
45
46 %{?with_system_libtom:rm -r libtomcrypt libtommath}
47
48 %build
49 %{__aclocal}
50 %{__autoconf}
51 %{__autoheader}
52 export OLDCFLAGS=set # hack for configure to respect our optflags
53 %configure \
54         %{__enable_disable_not system_libtom bundled-libtom} \
55         %{?with_pam:--enable-pam}
56 %{__make}
57
58 %install
59 rm -rf $RPM_BUILD_ROOT
60 install -d $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
61 %{__make} install \
62         INSTALL="install -p" \
63         DESTDIR=$RPM_BUILD_ROOT
64
65 %clean
66 rm -rf $RPM_BUILD_ROOT
67
68 %files
69 %defattr(644,root,root,755)
70 %doc CHANGES LICENSE README SMALL
71 %{_sysconfdir}/%{name}
72 %attr(755,root,root) %{_bindir}/dbclient
73 %attr(755,root,root) %{_bindir}/dropbearconvert
74 %attr(755,root,root) %{_bindir}/dropbearkey
75 %attr(755,root,root) %{_sbindir}/dropbear
76 %{_mandir}/man1/dbclient.1*
77 %{_mandir}/man1/dropbearconvert.1*
78 %{_mandir}/man1/dropbearkey.1*
79 %{_mandir}/man8/dropbear.8*
This page took 0.061092 seconds and 3 git commands to generate.