2008-11-04 17:48:58 +01:00
|
|
|
#
|
2011-08-18 09:37:22 +02:00
|
|
|
# spec file for package libssh2_org
|
2008-11-04 17:48:58 +01:00
|
|
|
#
|
2017-06-14 12:25:35 +02:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2008-11-04 17:48:58 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2017-06-14 12:25:35 +02:00
|
|
|
%define pkg_name libssh2
|
|
|
|
Name: libssh2_org
|
|
|
|
Version: 1.8.0
|
|
|
|
Release: 0
|
2008-11-04 17:48:58 +01:00
|
|
|
Summary: A library implementing the SSH2 protocol
|
2013-01-11 15:43:44 +01:00
|
|
|
License: BSD-3-Clause
|
|
|
|
Group: Development/Libraries/C and C++
|
2011-12-27 05:11:19 +01:00
|
|
|
Url: http://www.libssh2.org/
|
2013-06-25 09:56:12 +02:00
|
|
|
Source0: http://www.libssh2.org/download/%{pkg_name}-%{version}.tar.gz
|
2015-03-13 07:55:14 +01:00
|
|
|
Source1: http://www.libssh2.org/download/%{pkg_name}-%{version}.tar.gz.asc
|
2010-02-11 19:32:00 +01:00
|
|
|
Source2: baselibs.conf
|
2015-03-13 07:55:14 +01:00
|
|
|
Source3: libssh2_org.keyring
|
2017-06-14 12:25:35 +02:00
|
|
|
Patch0: libssh2-ocloexec.patch
|
2013-06-25 09:56:12 +02:00
|
|
|
BuildRequires: groff
|
2012-02-02 05:31:06 +01:00
|
|
|
BuildRequires: libtool
|
2013-01-11 15:43:44 +01:00
|
|
|
BuildRequires: man
|
|
|
|
BuildRequires: openssh
|
2017-06-14 12:25:35 +02:00
|
|
|
BuildRequires: openssl-devel
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: pkgconfig(zlib)
|
2013-06-25 09:56:12 +02:00
|
|
|
# drops build cycle in Factory
|
|
|
|
#!BuildIgnore: groff-full
|
2008-11-04 17:48:58 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
libssh2 is a library implementing the SSH2 protocol as defined by
|
|
|
|
Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION,
|
|
|
|
SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and
|
|
|
|
SECSH-PUBLICKEY.
|
|
|
|
|
|
|
|
%package -n libssh2-1
|
|
|
|
Summary: A library implementing the SSH2 protocol
|
|
|
|
Group: Development/Libraries/C and C++
|
|
|
|
|
|
|
|
%description -n libssh2-1
|
|
|
|
libssh2 is a library implementing the SSH2 protocol as defined by
|
|
|
|
Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION,
|
|
|
|
SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and
|
|
|
|
SECSH-PUBLICKEY.
|
|
|
|
|
|
|
|
%package -n libssh2-devel
|
|
|
|
Summary: A library implementing the SSH2 protocol
|
|
|
|
Group: Development/Libraries/C and C++
|
2011-08-17 23:20:59 +02:00
|
|
|
Requires: glibc-devel
|
|
|
|
Requires: libssh2-1 = %{version}
|
2008-11-04 17:48:58 +01:00
|
|
|
|
|
|
|
%description -n libssh2-devel
|
|
|
|
libssh2 is a library implementing the SSH2 protocol as defined by
|
|
|
|
Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION,
|
|
|
|
SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and
|
|
|
|
SECSH-PUBLICKEY.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{pkg_name}-%{version}
|
2013-06-25 09:56:12 +02:00
|
|
|
%patch0 -p1
|
2008-11-04 17:48:58 +01:00
|
|
|
|
|
|
|
%build
|
2013-03-01 11:22:28 +01:00
|
|
|
sed -i -e 's@AM_CONFIG_HEADER@AC_CONFIG_HEADERS@g' configure.ac
|
|
|
|
cp src/libssh2_config.h.in example/libssh2_config.h
|
2017-06-14 12:25:35 +02:00
|
|
|
# remove m4 macro files for libtool as they should be picked up by
|
2013-04-24 18:31:10 +02:00
|
|
|
rm -v m4/libtool.m4 m4/lt*
|
2013-03-01 11:22:28 +01:00
|
|
|
autoreconf -fiv
|
2017-06-14 12:25:35 +02:00
|
|
|
export CFLAGS="%{optflags} -DOPENSSL_LOAD_CONF"
|
|
|
|
%configure \
|
|
|
|
--disable-silent_rules \
|
|
|
|
--disable-static \
|
|
|
|
--with-pic \
|
|
|
|
--disable-rpath \
|
|
|
|
--with-libz=%{_prefix} \
|
|
|
|
--with-openssl=%{_prefix}
|
2011-08-17 23:20:59 +02:00
|
|
|
make %{?_smp_mflags}
|
2008-11-04 17:48:58 +01:00
|
|
|
|
2013-01-11 15:43:44 +01:00
|
|
|
%check
|
2017-06-14 12:25:35 +02:00
|
|
|
make %{?_smp_mflags} check
|
2013-04-24 18:31:10 +02:00
|
|
|
|
2008-11-04 17:48:58 +01:00
|
|
|
%install
|
2017-06-14 12:25:35 +02:00
|
|
|
%make_install
|
2013-04-24 18:31:10 +02:00
|
|
|
rm -f %{buildroot}%{_libdir}/*.la %{buildroot}%{_libdir}/*.a
|
2008-11-04 17:48:58 +01:00
|
|
|
|
|
|
|
%post -n libssh2-1 -p /sbin/ldconfig
|
|
|
|
%postun -n libssh2-1 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files -n libssh2-1
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libssh2.so.1*
|
|
|
|
|
|
|
|
%files -n libssh2-devel
|
|
|
|
%defattr(-,root,root)
|
2010-02-11 19:32:00 +01:00
|
|
|
%doc NEWS
|
2008-11-04 17:48:58 +01:00
|
|
|
%{_libdir}/libssh2.so
|
|
|
|
%{_includedir}/*.h
|
|
|
|
%{_mandir}/man3/*
|
2010-02-11 19:32:00 +01:00
|
|
|
%{_libdir}/pkgconfig/libssh2.pc
|
2008-11-04 17:48:58 +01:00
|
|
|
|
|
|
|
%changelog
|