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