]> git.pld-linux.org Git - packages/libssh.git/blob - libssh.spec
- doesn't compile with make -j != 1
[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.2
5 Release:        1
6 Epoch:          1
7 License:        LGPL
8 Group:          Libraries
9 Source0:        http://0xbadc0de.be/libssh/%{name}-%{version}.tgz
10 # Source0-md5:  8a76c03579a3e27046e6bafe88ffd171
11 URL:            http://0xbadc0de.be/wiki/doku.php?id=libssh:libssh
12 BuildRequires:  libmagic-devel
13 BuildRequires:  openssl-devel
14 BuildRequires:  zlib-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 The ssh library was designed to be used by programmers needing a
19 working SSH implementation by the mean of a library. The complete
20 control of the client is made by the programmer. With libssh, you can
21 remotely execute programs, transfer files, use a secure and
22 transparent tunnel for your remote programs. With its Secure FTP
23 implementation, you can play with remote files easily, without
24 third-party programs others than libcrypto (from openssl).
25
26 %description -l pl.UTF-8
27 Biblioteka ssh została zaprojektowana do używania przez programistów
28 potrzebujących działającej implementacji SSH w postaci biblioteki. Za
29 pomocą libssh można przesyłać pliki, zdalnie uruchamiać programy bądź
30 też tworzyć na ich potrzeby bezpieczne i przezroczyste tunele. Dzięki
31 zawartej implementacji protokołu Secure FTP programista ma możliwość
32 łatwego wykonywania operacji na zdalnych plikach bez konieczności
33 korzystania z dodatkowego zewnętrznego oprogramowania poza biblioteką
34 libcrypto (pakiet openssl).
35
36 %package devel
37 Summary:        Header files for libssh library
38 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libssh
39 Group:          Development/Libraries
40 Requires:       %{name} = %{epoch}:%{version}-%{release}
41
42 %description devel
43 Header files for libssh library.
44
45 %description devel -l pl.UTF-8
46 Pliki nagłówkowe biblioteki libssh.
47
48 %prep
49 %setup -q
50
51 %build
52 %configure
53 %{__make} -j1
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57
58 %{__make} install \
59         DESTDIR=$RPM_BUILD_ROOT \
60         libdir=%{_libdir}
61
62 %post   -p /sbin/ldconfig
63 %postun -p /sbin/ldconfig
64
65 %clean
66 rm -rf $RPM_BUILD_ROOT
67
68 %files
69 %defattr(644,root,root,755)
70 %doc README
71 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
72
73 %files devel
74 %defattr(644,root,root,755)
75 %{_libdir}/libssh.so
76 %{_includedir}/*
This page took 0.059115 seconds and 4 git commands to generate.