]> git.pld-linux.org Git - packages/libssh.git/blob - libssh.spec
- up to 0.7.3; fixed CVE-2016-0739, CVE-2015-3146
[packages/libssh.git] / libssh.spec
1 Summary:        Library implementing the SSH protocol
2 Summary(pl.UTF-8):      Biblioteka implementująca protokół SSH
3 Name:           libssh
4 Version:        0.7.3
5 Release:        1
6 Epoch:          1
7 License:        LGPL v2.1+; parts are BSD-licensed
8 Group:          Libraries
9 # dead atm.
10 #Source0:       https://red.libssh.org/attachments/download/87/%{name}-%{version}.tar.xz
11 Source0:        https://git.libssh.org/projects/libssh.git/snapshot/%{name}-%{version}.tar.gz
12 # Source0-md5:  421e7adf7e8b3e22f16c963b85b97b15
13 URL:            http://www.libssh.org/
14 BuildRequires:  cmake >= 2.6.0
15 BuildRequires:  heimdal-devel
16 BuildRequires:  openssl-devel >= 0.9.8
17 BuildRequires:  rpmbuild(macros) >= 1.600
18 BuildRequires:  zlib-devel
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 The ssh library was designed to be used by programmers needing a
23 working SSH implementation by the mean of a library. The complete
24 control of the client is made by the programmer. With libssh, you can
25 remotely execute programs, transfer files, use a secure and
26 transparent tunnel for your remote programs. With its Secure FTP
27 implementation, you can play with remote files easily, without
28 third-party programs others than libcrypto (from openssl).
29
30 %description -l pl.UTF-8
31 Biblioteka ssh została zaprojektowana do używania przez programistów
32 potrzebujących działającej implementacji SSH w postaci biblioteki. Za
33 pomocą libssh można przesyłać pliki, zdalnie uruchamiać programy bądź
34 też tworzyć na ich potrzeby bezpieczne i przezroczyste tunele. Dzięki
35 zawartej implementacji protokołu Secure FTP programista ma możliwość
36 łatwego wykonywania operacji na zdalnych plikach bez konieczności
37 korzystania z dodatkowego zewnętrznego oprogramowania poza biblioteką
38 libcrypto (pakiet openssl).
39
40 %package devel
41 Summary:        Header files for libssh library
42 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libssh
43 Group:          Development/Libraries
44 Requires:       %{name} = %{epoch}:%{version}-%{release}
45
46 %description devel
47 Header files for libssh library.
48
49 %description devel -l pl.UTF-8
50 Pliki nagłówkowe biblioteki libssh.
51
52 %prep
53 %setup -q
54
55 %build
56 install -d build
57 cd build
58 %cmake .. \
59         -DWITH_SSH1=ON
60
61 %{__make}
62
63 %install
64 rm -rf $RPM_BUILD_ROOT
65
66 %{__make} -C build install \
67         DESTDIR=$RPM_BUILD_ROOT \
68         libdir=%{_libdir}
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %files
77 %defattr(644,root,root,755)
78 %doc AUTHORS BSD ChangeLog README
79 %attr(755,root,root) %{_libdir}/libssh.so.*.*.*
80 %attr(755,root,root) %ghost %{_libdir}/libssh.so.4
81 %attr(755,root,root) %{_libdir}/libssh_threads.so.*.*.*
82 %attr(755,root,root) %ghost %{_libdir}/libssh_threads.so.4
83
84 %files devel
85 %defattr(644,root,root,755)
86 %attr(755,root,root) %{_libdir}/libssh.so
87 %attr(755,root,root) %{_libdir}/libssh_threads.so
88 %{_includedir}/libssh
89 %{_pkgconfigdir}/libssh.pc
90 %{_pkgconfigdir}/libssh_threads.pc
91 %{_libdir}/cmake/libssh
This page took 0.065036 seconds and 3 git commands to generate.