Changes of Revision 3
[-] | Added | php5-ssh2.spec |
x 1
2 +# norootforbuild 3 +%define pkg_name ssh2 4 +%define pkg_version 0.10 5 +%define php_version %(php-config --version 2>/dev/null || echo PHPCONFIG_NOT_FOUND) 6 +# 7 +Name: php5-ssh2 8 +Version: 0.10 9 +Release: 0 10 +# 11 +License: PHP 12 +Group: Productivity/Networking/Web/Servers 13 +# 14 +BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-build 15 +BuildRequires: php5-devel libssh2-devel 16 +Requires: php5 = %{php_version} 17 +# 18 +URL: http://pecl.php.net/ssh2 19 +Source: http://pecl.php.net/package/ssh2/%{pkg_name}-%{version}.tgz 20 +Patch0: php5-ssh2-lib64.patch 21 +Patch1: php5-ssh2-fixes.patch 22 + 23 +Summary: Bindings for the libssh2 library 24 +%description 25 + 26 +Provides bindings to the functions of libssh2 which implements the SSH2 protocol. 27 + 28 +Authors: 29 +--------- 30 + 31 + Sara Golemon <pollita@php.net> 32 + 33 +%debug_package 34 +%prep 35 +%setup -n %{pkg_name}-%{version} 36 +%patch0 37 +%patch1 38 + 39 +%{__mkdir} %{name} 40 + 41 +%build 42 +/usr/bin/phpize 43 +pushd %{name} 44 + 45 +CFLAGS="%{optflags} -fno-strict-aliasing" 46 +CXXFLAGS="%{optflags} -fno-strict-aliasing" 47 +%if 0%{?suse_version} > 1000 48 +CFLAGS="$CFLAGS -fstack-protector" 49 +CXXFLAGS="$CXXFLAGS -fstack-protector" 50 +%endif 51 + 52 +export CFLAGS 53 +export CXXFLAGS 54 + 55 +../configure --with-ssh2=%{_usr} --with-libdir=%{_lib} 56 + 57 +%{__make} %{?jobs:-j%jobs} 58 +popd 59 + 60 +%install 61 +%makeinstall -C %{name} INSTALL_ROOT=%{buildroot} 62 +%{__mkdir} -p %{buildroot}%{_sysconfdir}/php5/conf.d 63 +echo "; comment out next line to disable ssh2 extension in php" > %{buildroot}%{_sysconfdir}/php5/conf.d/ssh2.ini 64 +echo 'extension = ssh2.so' >> %{buildroot}%{_sysconfdir}/php5/conf.d/ssh2.ini 65 + 66 + 67 +%clean 68 +%{__rm} -rf %{buildroot} 69 + 70 +%files 71 +%defattr(-,root,root,-) 72 +%{_libdir}/php5/extensions/ssh2.so 73 +%config(noreplace) %{_sysconfdir}/php5/conf.d/ssh2.ini 74 + 75 +#%doc CREDITS 76 + 77 +%changelog -n php5-ssh2 78 +* Fri Dec 22 2006 - judas_iscariote@shorewall.net 79 +- very first build 80 |