mirror of
https://github.com/YunoHost-Apps/roundcube_ynh.git
synced 2024-09-03 20:16:28 +02:00
Fix GPG dependency on Stretch
php-crypt-gpg doesn't exist any more in Stretch and... isn't needed!
This commit is contained in:
parent
b18e6a1b89
commit
cb3db1a477
1 changed files with 4 additions and 2 deletions
|
@ -5,9 +5,11 @@
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
# Package dependencies
|
# Package dependencies
|
||||||
pkg_dependencies="php5-cli php5-common php5-intl php5-json php5-mcrypt php-pear php-auth-sasl php-mail-mime php-patchwork-utf8 php-net-smtp php-net-socket php-crypt-gpg php-net-ldap2 php-net-ldap3"
|
pkg_dependencies="php5-cli php5-common php5-intl php5-json php5-mcrypt php-pear php-auth-sasl php-mail-mime php-patchwork-utf8 php-net-smtp php-net-socket php-net-ldap2 php-net-ldap3"
|
||||||
if [ "$(lsb_release --codename --short)" != "jessie" ]; then
|
if [ "$(lsb_release --codename --short)" != "jessie" ]; then
|
||||||
pkg_dependencies="$pkg_dependencies php-zip"
|
pkg_dependencies="$pkg_dependencies php-zip"
|
||||||
|
else
|
||||||
|
pkg_dependencies="$pkg_dependencies php-crypt-gpg"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Plugins version
|
# Plugins version
|
||||||
|
|
Loading…
Add table
Reference in a new issue