]> git.pld-linux.org Git - packages/libssh.git/blob - libssh.spec
a4596a69c3d2a70855f822e28dbf710b8b578f7b
[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.4.7
5 Release:        1
6 Epoch:          1
7 License:        LGPL v2.1
8 Group:          Libraries
9 Source0:        http://www.libssh.org/files/0.4/%{name}-%{version}.tar.gz
10 # Source0-md5:  2c95942c0d15f709e3328bacea91722c
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
57 %{__make}
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61
62 %{__make} -C build install \
63         DESTDIR=$RPM_BUILD_ROOT \
64         libdir=%{_libdir}
65
66 %post   -p /sbin/ldconfig
67 %postun -p /sbin/ldconfig
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %files
73 %defattr(644,root,root,755)
74 %doc README
75 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
76 %attr(755,root,root) %ghost %{_libdir}/lib*.so.?
77
78 %files devel
79 %defattr(644,root,root,755)
80 %{_libdir}/libssh.so
81 %{_includedir}/libssh
This page took 0.052164 seconds and 3 git commands to generate.