source: projects/specs/trunk/lib/libs/libssh/libssh-vl.spec @ 2602

Revision 2602, 2.5 KB checked in by Takemikaduchi, 13 years ago (diff)

libXtst: add Requires, libewf,testdisk: rebuild with openssl-1.0.0c, others: new upstream release

Line 
1Summary:        A library implementing the SSH2 protocol
2Summary(ja):    SSH2プロトコルを実装するためのライブラリ
3
4Name:           libssh
5Version:        0.4.8
6Release:        1%{?_dist_release}
7
8Group:          System Environment/Libraries
9License:        LGPLv2+
10URL:            http://www.libssh.org/
11Source0:        http://www.libssh.org/files/%{name}-%{version}.tar.gz
12Patch0:         libssh-0.2-libdir.patch
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  openssl-devel
16BuildRequires:  zlib-devel   
17BuildRequires:  cmake
18
19%description
20The SSH library with
21- Full C library functions for manipulating a client-side SSH connection
22- Fully configurable sessions
23- Support for AES-128,AES-192,AES-256,blowfish, in cbc mode
24- use multiple SSH connections in a same process, at same time.
25- usable SFTP implementation
26- Public key and password authentication
27
28%package devel
29Summary:         Development files for %{name}
30Summary(ja):     %{name} の開発ファイル
31Group:           Development/Libraries
32Requires:        %{name} = %{version}-%{release}
33
34%description devel
35The %{name}-devel package contains libraries and header files for
36developing applications that use %{name}.
37
38%prep
39%setup -q
40
41%build
42mkdir -p %{_target_platform}
43pushd %{_target_platform}
44%cmake ..
45popd
46
47make %{?_smp_mflags} -C %{_target_platform}
48
49#configure --disable-static --enable-shared
50#make # doesn't build with %{?_smp_mflags}
51
52%install
53[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
54
55make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
56
57%clean
58rm -rf $RPM_BUILD_ROOT
59
60%post -p /sbin/ldconfig
61
62%postun -p /sbin/ldconfig
63
64%files
65%defattr(-,root,root,-)
66%doc AUTHORS ChangeLog COPYING README
67%{_libdir}/*.so.*
68
69%files devel
70%defattr(-,root,root,-)
71%{_includedir}/*
72%{_libdir}/*.so
73
74%changelog
75* Sat Jan 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.8-1
76- new upstream release
77
78* Sun Jun 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.4.4-1
79- new upstream release
80
81* Sun Mar  7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.4.1-1
82- new upstream release
83
84* Tue Sep 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2-1
85- initial build for Vine Linux
86
87* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 0.2-4
88- rebuilt with new openssl
89
90* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-3
91- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
92
93* Tue Jun 02 2009 Jan F. Chadima <jchadima@redhat.com> - 0.2-2
94- Small changes during review
95
96* Mon Jun 01 2009 Jan F. Chadima <jchadima@redhat.com> - 0.2-1
97- Initial build
Note: See TracBrowser for help on using the repository browser.