mirror of
https://github.com/danog/docker-php-extension-installer.git
synced 2024-12-04 02:17:48 +01:00
Merge pull request #288 from mlocati/ssh2
Simplify handling of ssh2 version
This commit is contained in:
commit
ea4b399dc5
@ -1893,19 +1893,18 @@ installRemoteModule() {
|
|||||||
if test $PHP_MAJMIN_VERSION -le 506; then
|
if test $PHP_MAJMIN_VERSION -le 506; then
|
||||||
installRemoteModule_version=0.13
|
installRemoteModule_version=0.13
|
||||||
elif test $PHP_MAJMIN_VERSION -le 704; then
|
elif test $PHP_MAJMIN_VERSION -le 704; then
|
||||||
installRemoteModule_version=1.2
|
installRemoteModule_version=beta
|
||||||
|
else
|
||||||
|
installRemoteModule_src="$(getPackageSource https://codeload.github.com/php/pecl-networking-ssh2/tar.gz/93265d71bdeb23350e8320126c7949ed791310df)"
|
||||||
|
cd -- "$installRemoteModule_src"
|
||||||
|
phpize
|
||||||
|
./configure
|
||||||
|
make -j$(getCompilationProcessorCount)
|
||||||
|
make install
|
||||||
|
cd - >/dev/null
|
||||||
|
installRemoteModule_manuallyInstalled=1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test -z "$installRemoteModule_version" && test $PHP_MAJMIN_VERSION -ge 800; then
|
|
||||||
installRemoteModule_src="$(getPackageSource https://codeload.github.com/php/pecl-networking-ssh2/tar.gz/93265d71bdeb23350e8320126c7949ed791310df)"
|
|
||||||
cd -- "$installRemoteModule_src"
|
|
||||||
phpize
|
|
||||||
./configure
|
|
||||||
make -j$(getCompilationProcessorCount)
|
|
||||||
make install
|
|
||||||
cd - >/dev/null
|
|
||||||
installRemoteModule_manuallyInstalled=1
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
snuffleupagus)
|
snuffleupagus)
|
||||||
if test -z "$installRemoteModule_version"; then
|
if test -z "$installRemoteModule_version"; then
|
||||||
|
Loading…
Reference in New Issue
Block a user